Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 phpmailer 中,我没有在 gmail 中看到图片,只有当我按下显示图像、从 Outlook 发送的相同电子邮件(相同的文本、相同的发件人、相同的 smtp、相同的 dkim、相同的 x-mailer)时才可以。
有任何想法吗?我想要phpmailer,因为我可以在主题或从或bla bla 中旋转事物。
Outlook 内嵌图像数据以避免客户端连接到外部源。在创建电子邮件正文期间,不要使用带有 html 正文的外部链接,而是使用带有适当 mime 的附加图像或内联 HTML 二进制数据。
这是一个示例代码:
<img src="data:image/jpeg;base64{binary_data_here}" />