我希望 SAS 发送一封电子邮件,但前提是全局宏变量 &warning 等于 1。
这可能吗?我正在尝试以下方法,但它不起作用。当 warning=0 时,它仍然会发送电子邮件。
filename outbox email
to=('me@myemail.com')
subject='Warning Report'
from='you@myemail.com'
attach='/report.html';
DATA _null_;
file outbox;
Put "Hello,"//
"Warning report attached."//
"Regards,"/
"Chris";
if &warning. =1
run;