1

我在 SAS EG 7.2 中创建了一份报告,并让 SAS 在电子邮件正文中通过电子邮件发送它,但我似乎无法添加任何文本。我有这个代码:

filename mymail email   
                    to=('mail@email.com')
                    subject='Report'
                    from='mail@email.com'
                    Content_type="text/html";

ods _all_  close;
ODS ESCAPECHAR='^'; 
ods html body=mymail  style=minimal;

proc report data=data… 
…
run;

ods html close;
ods _all_ close;

这完美地发送了我的电子邮件。我可以这样做来添加一些文本

filename mymail email   
                        to=('mail@email.com')
                        subject='Report'
                        from='mail@email.com'
                        Content_type="text/html";

ods _all_  close;
ODS ESCAPECHAR='^'; 
ods html body=mymail  style=minimal;

DATA _null_;
file mymail;
Put "Hello,"//
"You are recieving this mail because:"//;
if &warn1=1 then do;
put "&w1." //; end;
if &warn2=1 then do;
put "&w2." //; end;
put
"Regards,"//
"Chris";
run;

ods html close;
ods _all_ close;

但我似乎不能两者兼得?如果我包含文本步骤和 proc 报告,我只会在生成的电子邮件中看到报告。有任何想法吗?

提前致谢 :)

4

2 回答 2

1

如果有人有兴趣,我设法通过直接在 proc 报告之前添加以下行来解决这个问题:

ods html text="<div>Please find below the Reports </div> <br><br> There are &&totalwarnings. warnings for the last hour:<br><br>";

%if &warn1=1 %then %do;
ods html text="&&w1."; %end;
%if &warn2=1 %then %do;
ods html text="&&w2."; %end;
于 2018-06-11T15:40:41.420 回答
1

您将文本添加到 HTML 文件本身的解决方案听起来最好。

您的原始代码有几个问题。

首先,您有访问冲突。该DATA _NULL_步骤是尝试写入 ODS HTML 进程仍在写入的同一文件。你没有收到错误信息吗?或者可能是两封单独的电子邮件?

其次,即使您成功地将文本写入与 ODS HTML 生成的文件相同的文件中,它也将位于 ODS HTML生成的报告周围的<HTML>..标记之前或之后。</HTML>因此,接收者可能会忽略它。

于 2018-06-11T22:42:10.087 回答