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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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