cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Email Sender -- How to omit some input fields from sending in an email

yash_verma
New Contributor

Hi ,

I am trying to use email sender for sending email from input mapper snap. In email sender I am dynamically trying to pass the from email and to _email from input but in the email body also from_email and to_email is also coming which I want to remove.

Also can any one also tell me other use cases of table_data_path in this snap.

image
image

2 REPLIES 2

lazo_ilijoski
New Contributor III

Hi @yash.verma,

There are possible two solutions:

  1. You can put Email Sender in the sub-pipeline and from_email and to_email to be provided as pipeline parameters. In the sub-pipeline before the email sender you can set mapper and to edit email body i.e. to remove from_email and to_email from the body.
  2. The other solution is: put mapper between CSV Parser and Email Sender, and create nested JSON object, similar to the following example (in this example nested JSON object is โ€œtableโ€):
    image

Then change the Email Sender snap and in the Table-data path set the name of the nested JSON (i.e. โ€œtableโ€ in this example):
image

I hope this will help you to resolve your issue.

Regards,
Lazo

yash_verma
New Contributor

Thanksโ€ฆ I will try โ€ฆ