Hi, i hope solution will still be relevant to you, if not i think it might be usefull for anyone landing on this page I'm working on v9.2 FILENAME myemail EMAIL from="your@email.com" encoding='wlatin2' /* i use it for east european characters */ to = "recepient@email.com" subject = "solution to display image in email body" type = "text/html" attach = "fullPath\imagename.png" ; ods listing close; /* close default ods */ ods html body=myemail options(pagebreak="no") style=myHTML rs=none; /* start ods to html with options, rs=none forces ODS to perform record based output */ data _null_; /* embed attached image */ ods html text = '<img src = "imagename.png""></img>'; run; ods _all_close; /* close all (html) ods */ Attached file should appear in body content, at least it does in outlook 2007 and 2010.
... View more