有没有一种方法可以让像gmail这样的在线邮件客户端显示内联发送的图像,即嵌入邮件中的图像?
在电子邮件中发送图像的最佳方式是什么?因为大多数在线客户端都支持在线发送链接,所以在线发送链接是最好的吗?
通常,如果图像在邮件中正确地为inlined
,则像Gmail这样的邮件客户端会适当地显示内联图像。在grails中的mail
插件的上下文中,我能够通过以下操作在gmail中实现内联图像:
sendMail {
multipart true
// we send the image type regardless if the email client renders in html or plain text. If plain text
// jpg will be attached. Not a lot can be done since we do not know how the email client will render.
// if html, then image will be embedded in html and will not be attached and will be downloaded since image is not
// being loaded from external site.
if(filesToAttach){
filesToAttach.each{ file ->
inline file.tokenize(".").get(0), "image/jpeg", new ClassPathResource("/${file}", this.getClass())
}
}
to recipient
from from
subject subject
html view: view, model: [//my model]
}
通常,它取决于电子邮件客户端根据其设置来呈现消息。然而,根据上述示例的实际实施已经显示出积极的结果。