1
我試圖將R創建的JPEG圖像嵌入到電子郵件中,目的是創建一個顯示帶有動態文本的圖表的自動日常電子郵件。我能夠附加圖像,並指定競爭ID;但是,當我發送郵件並在Outlook中打開結果時,我會在圖片應該顯示的地方收到問號。該圖像確實成功附加到電子郵件上,看起來圖像只是不在HTML中內聯呈現。使用郵件發送內嵌圖像
這裏是我的示例代碼:
library(mailR)
send.mail(from = "[email protected]",
to = "[email protected]",
subject = paste("Results for the date ending ", Sys.Date()-1, sep = ""),
body = '<html> Test image - <img src="cid:test_img.jpg" /></html>',
html = TRUE,
smtp = list(host.name = "xxx.xxx.com", user.name = "[email protected]", passwd = "xxx"),
attach.files = '/Users/xxx/Documents/Rplots/test_img.jpg',
authenticate = TRUE,
inline = TRUE,
send = TRUE)
上這是怎麼回事任何想法?
這可能只是一個過濾器。在電子郵件中有很多「xxx」,Outlook可能認爲它是色情內容,並且爲了您自己的安全阻止它。 – Dason
這些x只是爲了掩蓋我的實際電子郵件,密碼等等 - 它們並不真正在我的代碼中。 – Bryan
哦,我知道。儘管只是用文字表達笑話總是很難。 – Dason