How can one create a template like this inside an outlook msg field thru automation and also send it?Help me out guys..Thanks in advance :)

Capture222

Hi,

You need to do the following steps,

  1. Select isBodyHtml
  2. Create a html template for the body with string place holders for the Dear {0}, and REQ {2}.
  3. Use that template for the email body.
  4. Replace the string place holders with corresponding values to be supplied.

For html table design please check here

Thanks.

1 Like

How to change the values in the table too??Same string placeholder procedure?? @sarathi125

Yes, the same procedure only. we have to read the whole html template as a string and use string.Format() to update any placeholders that are available in the string.

1 Like