data _null_;
file outbox
to=("[email protected]" "[email protected]")
/* Overrides value in */
/* filename statement */
cc=("[email protected]" "[email protected]")
subject="My SAS Output"
attach=("C:\sas\results.out" "C:\sas\code.sas")
;
put 'Folks,';
put 'Attached is my output from the SAS';
put 'program I ran last night.';
put 'It worked great!';
run;