0

Mail_Mime 1.8.9 Mail 1.2.0 php 5.4.12 项目 = 从我的本地主机开发计算机 (LAN) 运行。

您好,我正在尝试将图像添加到我使用 MailMime 发送的电子邮件中。图像永远不会加载。我将执行以下步骤:

在这里,我剥离了图像中的所有内容,但图像名称和扩展名(即:noimage.jpg)。然后我为非图像相关目的创建一个链接,然后使用剥离的图像名称和扩展名创建图像标签。

$url = substr($baseImage, 36);
$domainName = DomainNameUtil::getWebSiteDomainName();
$projectPath = DomainNameUtil::getPathToProject();
$productUrl = $domainName . $projectPath  . "/client/app/#/products/" . $product->id;
$productLink = "<a href='$productUrl'>$product->name</a>";
$string = "<img src='$url' /><br />";

我在这里发送消息

$mailConfig = MailConfigurationUtil::getMailConfigurationData();
$headers = array (
  'From' => $from,
  'To' => $to,
  'Subject' => $subject
);
$crlf = "\n";
$mime = new Mail_mime(array('eol' => $crlf));
$mime->setHTMLBody($body);
$headers = $mime->headers($headers);
$smtp = Mail::factory('smtp', array (
  'host' => $mailConfig->mailServer,
  'port' => $mailConfig->port,
  'auth' => true,
  'username' => $mailConfig->userName,
  'password' => $mailConfig->password
));

$productManager = new ProductManager();
$ordersManager = new OrdersManager();
$orderVirtualItem =  $ordersManager->getOrderVirtualItemByBoxId($boxId);
$product = $productManager->getProductById($orderVirtualItem->itemId);
$url = $product->baseImage;
$domain = DomainNameUtil::getWebSiteDomainName();
$path = DomainNameUtil::getPathToProject();
$r = substr($url, 5);
$finalUrl = $domain . $path . $r;
$mime->addHTMLImage(file_get_contents($finalUrl),'image/jpeg',basename("noimage"),false, "blackstone");
$body = $mime->get();
$mail = $smtp->send($to, $headers, $body);

在上面的例子中,我知道图像被称为 noimage.jpeg,所以在上面的 addHtmlImage 中我只是简单地说明了名称。我的印象是 addHtmlImage 中使用的名称必须与 html 正文中图像 src 标记中的图像名称相同。

当我实际发送电子邮件时,我收到了电子邮件,并收到一些文字说有图像,但我的电子邮件正文中的图像标签没有加载。此外,在 firebug 下查看它有一个附加到图像 src 的代理。它也将其引用为 PROXYADDRESS# http://noimage.jpg

在此处输入图像描述

任何人都有这方面的经验,可以帮助我理解为什么图像没有加载?

作为参考,我看到有人在网上发布此方法并尝试复制它们。在此之前,我什至尝试将整个 url 放在图像 src 中,而不是将图像添加到 MIME,但它不起作用。

4

2 回答 2

0

i got pretty similar problem here.

What i got so far: it depends on phpversion (and installed Mail_Mime). Mail_Mime seems to be "broken" under php 5.4.30 If i run my script under php 5.2.17 all images show up correctly If i run my script under php 5.4.30 all images do not show up correctly

when i compare both sourcecodes, it seems, Mail_Mime under 5.4.30 gets messy with the order of boundarys and the Content-Type: Content-Type: multipart/alternative; in 5.2.17 Content-Type: multipart/related; in 5.4.30enter image description here

email looks like this code comparison

于 2014-08-25T09:52:26.467 回答
0

指定上下文 ID(addHtmlImage() 的最后一个参数)时,您必须正确引用 html 消息中的图像:<img src="cid:context-id@local" />. 当然,用您自己的上下文 id 替换上下文 id 以显示每个图像。

于 2014-08-25T10:06:26.843 回答