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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 823 views
  • 0 likes
  • 2 in conversation