Hi ,
I want to add signature in SAS Email body by using Put statement.
Below is the sas code which is used to send the mail.
filename mymail email to="abc@pqr.com"
subject=" Greetings for the Day"
attach="C:\temp\file.pdf"
from="SAS Global Forum 2010 <pqr@test.com>";
data _null_;
file mymail;
put 'Dear Customer';
put 'Greeting for the Day';
put 'Greeting for the Day';
put 'Greeting for the Day';
Here I want to add signature of Image file.
Thanks in Advance!!
You need to add the picture as an attachment. Mails are (per definition) text only, and use special mechanisms for transporting non-textual data.
Google "MIME" and "BASE64" for more information.
Information for how to embed pictures inline can be found by googling "inline pictures mime".
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.