RosettaCodeData/Task/Send-email/SAS/send-email.sas
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

10 lines
187 B
SAS

filename msg email
to="afriend@someserver.com"
cc="anotherfriend@somecompany.com"
subject="Important message"
;
data _null_;
file msg;
put "Hello, Connected World!";
run;