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 正确地将图像放入电子邮件中?
我有这个代码:
$mail->IsHTML(true); $mail->Body = "Issue:<br/>".$issue."<br/><img src=$img_data/>";
但是当我将它发送到 gmail 时,它已经看起来像这样:
我正在使用 URI 来存储图像数据。如何在 PHPMailer 中链接此图像?
看这个
问题可能会帮助你你可以试试这个
使用 PHPMailer 发送电子邮件 - 在正文中嵌入图像
我希望它有帮助
尝试'在您的 img src 属性中添加一个:
'
"<img src='$img_data'/>";