我正在尝试将表格打印到电子邮件目的地,然后在最后放置一些自定义评论。当我尝试运行以下代码时,我收到消息:
ERROR: File is in use, .
我的代码是:
filename mymail email content_type="text/html"
to=("myemail@myemail.com")
from=("myemail@myemail.com")
subject="My Report";
ods html3 body=mymail style=sasweb;
proc print data=sashelp.class noobs;
run;
data _null_;
file mymail ;
put "I want this to appear at the bottom of the email.";
run;
ods html3 close;
filename mymail clear;
我试过用谷歌搜索寻求帮助,但搜索词太模糊了,很难把它缩小到这个特定的问题。谢谢您的帮助。
编辑:只是为了澄清 - 我想要电子邮件正文中的所有结果。我不希望将结果作为附件发送。此外,如果您只注释掉上述代码中的数据步骤,电子邮件就可以正常工作。