Click here to Skip to main content
15,896,487 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
SET @body ='<html><body>

<p>Hi </p>

<p> Request you to please check the reason behind it.</p>

<table border = 1 bgcolor="#f1f2e3"> 


<tr bgcolor ="#0fddd3">
<th bgcolor ="#FAFAF8">  SalesOrg </th>
<th bgcolor ="#FAFAF8">  Id </th>
<th bgcolor ="#FAFAF8">  Phase </th>
<th bgcolor ="#FAFAF8">  CAS to PI TimeFrame</th>
</tr>'


SET @body = @body + @xml +'</Table></body></html>'--</body1>



I am trying to use html code to trigger an email for a job.
From the above code ,I am not able to write a
signature(i.e.Regards
Sunitee)
How Can I code in html to write the signature in the above code.
Thanks in advance.

What I have tried:

I am trying to use html code to trigger an email for a job.
From the above code ,I am not able to write a
signature(i.e.Regards
Sunitee)
How Can I code in html to write the signature in the above code.
Thanks in advance.
Posted
Updated 28-Feb-17 7:37am
v2

1 solution

Just add it to the end of the body of the email (see How do I remove T from timeframe(2017-02-27T00:00:00)?[^] )
e.g.
SQL
SET @body = @body + @xml +'</Table><p>Regards</p><p>Sunitee</p></body></html>'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900