Hi All,
I am trying to compose a mail which needs bold text, center justification and font color as blue. here is the code that i tried
data _null_;
file sendmail;
put '<html>';
put '<body>';
put '< p style = "color: blue font-size: 14pt text-align: center"> Summary report </p> ';
put '<p style = "color: blue font-size: 20pt text-align: center">Stagle 1</p>';
put '<p style = "color: blue font-size: 10pt text-align: center">do not forward or distribute</p>';
put '<img src=cid:email0>';
put '</body>';
put '</html>';
run;
This code is not working. Can someone help?
Thanks,
Jay