Send an email for all the records of result sheet which are failed or gave exception in the mail body with the record name / id

Hi Everyone,

I need to send an email for all the records of result sheet which are failed or gave exception in the mail body with the record name / id.

Thanks!

You can construct the body of the email with string manipulations and then add to the body of the email.

In the send email activity, you can set the subject, body and other mandatory fields.

  • Body: Fill in the blank space with the body of the email you want to send.
  • Subject: Fill in the blank space with the subject of the email you want to send.
  • MailMessage: If you already have a MailMessage object, you can forward that email without completing the subject and the body.
  • Account: Insert your email address. This is considered as the sender address.
  • CC: Insert here the addresses that you want to include in the ‘Cc.’ If you have more than one address, type them separated by comma.

Ref -

Regards,
Karthik Byggari

1 Like

Thanks Karthik, But I need to send a table into the tabular format in the mail. Do you have any idea how to achieve that.

Regards

You can use the html format and use tags TH, TR and TD to build the table.

You can find the sample code here -

Regards,
Karthik Byggari

1 Like

Thanks Kathik