how to send smtp email through template
i need to send email when exception occurred like links or rows missing from the data table
@prathik_8679
What is the template which you are referring here?
excel template
Like an attachement??
in_TransactionItem.SpecificContent for what this is used
If you are pooking for attachmnt you can add it in the attachment field.
Else if you want to add in the body, then you have to enable ishtml and add the body qs html syntax.
ok i am still working on it
in_TransactionItem.SpecificContent can u please tell me about this, how it is used
Hi @prathik_8679,
As far as I understand, you are using RE framework and you want to send mail with the data you get from the queue. Is it correct ?
in_TransactionItem is a collection variable. It keeps the values of each item you have added to the queue. These values can be inputs you assign, outputs you export, exceptions.
To call your input values, you must specify the value you defined as you defined it when adding it to the queue.
in_TransactionItem.SpecificContent("Email").ToString
You can use Create HTML Content. You can import the variables you will use in your HTML body from here.
You can send the html content you created here to the mail body.
Regards,
MY
