イメージを1か所に保存しました。私は電子メールの本文にイメージを送ることができ、電子メールの本文に(proc printを使って)テーブルを送ることができます。イメージとテーブル(proc print)を電子メールの本文に埋め込む方法は? SAS
問題は、画像と表の両方を電子メールの本文に入れることができないことです。ここで
は、私は私はあなたが使用しているパス名に間違いがあると思い
filename report "c:/users/test.html";
filename SEND email to ="*****@****.com"
from="****@****.com"
attach=("/C/users/graph1.png" name="testgraph1" inlined="logo1")
content_type="text/html";
ods html file=report;
proc print data=test;
run;
ods html close;
data _null_;
infile report;
file SEND;
input;
put _infile_;
put "<img src='id:logo1'/>";
run;