Email body needed

Hi team,
i want to put email body like below mentioned screenshot
and that i want to put in in_config file …
According to that can i get xaml ?
pleaase i need urgently

It would be better to put it into a text file.

Here is an example of an email template I did in a text file:

<table border="1" cellspacing="0" cellpadding="4" style="font-family:arial,helvetica;font-size:12px;">
<TR><td nowrap style="font-weight:bold;background-color:silver;">Transaction ID #</td><TD>{Transaction ID}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Reference ID #</td><TD>{Reference ID}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Transaction Type</td><TD>{Transaction Type}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Requestor Name</td><TD>{Requestor Name}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Amount</td><TD>${Amount}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Debit Account Number (DDA)ending in</td><TD>{Debit Account Number}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Debit Customer Name</td><TD>{Debit Customer Name}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Description</td><TD>{Description}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Credit Account Number (DDA) ending in</td><TD>{Credit Account Number}</td></tr>
<TR><td nowrap style="font-weight:bold;background-color:silver;">Credit Customer Name</td><td>{Credit Customer Name}</td></tr>
</table>

Then I read that template in with Read Text File, then For Each through transactionItem.SpecificContent.Keys and use the key names (which match the {} items in the email) to do the replacements of the {} expressions in the template to runtime values.