BookmarkSubscribeRSS Feed
ShammiKalsi
Fluorite | Level 6

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!!

 

 

1 REPLY 1
Kurt_Bremser
Super User

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".

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1247 views
  • 0 likes
  • 2 in conversation