标题: Emailing from SAS [打印本页] 作者: shiyiming 时间: 2005-8-24 10:41 标题: Emailing from SAS [code:11039]filename mail email "shiyiming@bigfoot.com"
subject="Hello";
data _null_;
file mail;
put "Hi Shiyiming,";
put "Wish you all happy and good luck in the future!";
put "Cheers, Collen";
run;[/code:11039]作者: shiyiming 时间: 2005-8-26 16:07 标题: 标准回复 filename mail email "Collen@bigfoot.com"
subject="Re: Hello";
data _null_;
file mail;
put "Dear Collen,";
put "Wish you all happy and good luck in the future too!";
put "Cheers, Shiyiming";
put ":)";
run;