Hi,
I'm trying to send an email with output and email content to valid userid see below :
when i'm using set statement , my contents in the emial is not getting displayed i from the "else" part , any idea where i'm doing worng !
filename mailbox email;
data _null_;
set my_log1;
if &sysuserid='uvm472' then do ;
file mailbox to="Deepti@yahoo.com" subject='deepti test';
put _all_;
end;
else do;
file mailbox to="Deepti@yahoo.com" subject='not deepti test';
put " pbdv report is successfull";
end;
run;
I see three things I would encourage you to look at.
put '!em_to! ' to_email;to set the recipient based on the value of a data step variable. For the details of the directives, see "PUT Statement Email Directives" at http://support.sas.com/documentation/cdl/en/lestmtsref/69738/HTML/default/viewer.htm#n0ig2krarrz6vtn....
Sorry for the short reply. I hope some of this helps.
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.