5

我已将以下参数添加到 PHPMailer 对象。虽然我使用 AddEmbeddedImage() 函数嵌入了用于内联目的的图像,但它按预期工作,但另外附加了相同的图像作为电子邮件的附件并在底部显示。

$msg = `<table><tr><td colspan="2"><img  src="cid:header_jpg" alt="www.example.in" width="770" height="4" border="0" /></td></tr></table>`;

$mail = new PHPMailer(true); //New instance, with exceptions enabled
$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth   = false;        // enable SMTP authentication
$mail->Port       = 25;           // set the SMTP server port
$mail->Host       = 'localhost';  // SMTP server
$mail->Username   = "";           // SMTP server username
$mail->Password   = "";           // SMTP server password

$mail->AddReplyTo($sender, $sender_name);

$mail->From       = $sender;
$mail->FromName   = $sender_name;

$mail->AddAddress($receiver);

$mail->Subject  = $subject;

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap   = 80; // set word wrap

$mail->MsgHTML($msg);

$mail->IsHTML(true); // send as HTML
$mail->AddEmbeddedImage('./images/header.jpg', 'header_jpg');          
$mail->AddEmbeddedImage('./images/logo.jpg', 'logo_jpg');        
$mail->AddEmbeddedImage('./images/alert_icon.png', 'alert_icon_png', 'alert_icon.png');        
$mail->Send();

请尽早提出一些建议...

4

3 回答 3

6

我在使用网络电子邮件嵌入图像时遇到了同样的问题。我尝试了不同的方法并得到了这些结果:

向 Yahoo 发送 html 电子邮件:

$mail->AddEmbeddedImage("some_picture.png", "my-attach", "some_picture.png", "base64", "image/png");

或者

$mail->AddEmbeddedImage("some_picture.png", "my-attach", "some_picture.png", "base64", "application/octet-stream");

或者

$mail->AddEmbeddedImage("some_picture.png", "my-attach", "some_picture.png");

结果相同;雅虎正确显示了嵌入的图像,但仍然附加了它!

使用hotmail,它正确地嵌入了图像并且没有添加任何附件。

最后,我发现 PHPMailer 能够自动嵌入 HTML 电子邮件中的图像。在编写 HTML 电子邮件时,您必须将完整路径放在文件系统中。我最终忽略了 AddEmbeddedImage并将图像的源直接链接到它在网站上的位置。它在 Hotmail 和 Yahoo 中都能正常工作,并且在 Yahoo 中没有添加任何附件。

<img src="http://FULL_PATH-TO-IMAGE" alt="THIS IS THE IMAGE" />

不用说,除非用户单击“显示图像”按钮,否则电子邮件中的嵌入图像可能不会立即显示;这一切都取决于他们的隐私和安全设置。

我希望这有帮助!

于 2013-09-30T19:31:25.213 回答
3

恕我直言AddEmbeddedImage工作得很好。上面的问题是指向图像文件的第一个参数必须指定绝对主机文件路径名(又名 URI),而不是 URL。在解析为“/home/myaccountid/public_html/image_filename.jpg”的主机。作为一个 URL,它变成了“ http://myhostid.com/image_filename.jpg ”。

于 2015-01-13T05:25:00.493 回答
1

这里附上代码:

$mail->AddEmbeddedImage('img/logo.png', 'logoimg', 'xx.png', 'base64', 'image/png');

然后您可以在消息正文中执行此操作:

<tr>
<td>Picture Attach</td>
<td><img  src='cid:logoimg' alt='OnlyPict' border='0' width='30%' height='5'/></td>
</tr>
于 2020-03-05T04:08:09.297 回答