RosettaCodeData/Task/Send-email/SAS/send-email.sas

11 lines
187 B
SAS
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
filename msg email
to="afriend@someserver.com"
cc="anotherfriend@somecompany.com"
subject="Important message"
;
data _null_;
file msg;
put "Hello, Connected World!";
run;