1

我正在使用 swiftmailer 发送 HTML 邮件。这一切都很好,我的 HTML 邮件在所有客户端中都显示得很好。我非常了解构建电子邮件模板。不是我自己寄给他们的...

gmail和hotmail中存在问题。图像未显示。例如,它在 Thunderbird 中显示得很好...... gmail 将我的图片留为空白并将其添加为附件(在邮件的底部,就像我正在发送生日照片一样......)。

有任何想法吗?

我有以下代码:

function deliverMail($subject, $data, $from, $to, $template){
    if($_SERVER['SERVER_ADDR'] !== '::1'){

        if (!is_array($to)){
            $to = array($to);       
        }           
        $from = explode(",", $from);        

        //Create the Transport
        $transport = Swift_SmtpTransport::newInstance('mail.xxx.nl', 25)
          ->setUsername('xxx')
          ->setPassword('xxx');           

        $mailer = Swift_Mailer::newInstance($transport);
        $message = Swift_Message::newInstance($subject);
        $image = $message->embed(Swift_Image::fromPath($_SERVER['DOCUMENT_ROOT'].'/templates/emails/xxx.jpg'));


        // open the file
        $sourcefile     = $_SERVER['DOCUMENT_ROOT'].'/templates/emails/'.$template.'.html.tpl';
        $fh             = fopen($sourcefile, 'r');
        $htmltemplate       = fread($fh, filesize($sourcefile));
        fclose($fh);

        // set the content  
        if($template == 'confirm'){$replaceOld = array("[*code*]", "[*imgsrc*]");}          
        if($template == 'notify'){$replaceOld = array("[*url*]", "[*imgsrc*]");}

        $replaceNew     = array($data, $image);         
        $body           = str_replace($replaceOld, $replaceNew, $htmltemplate);         



        $message->setFrom(array($from[0] => $from[1]))
        ->setTo($to)
        ->setBody($body, 'text/html');


        if (!$mailer->send($message, $failures)){
          return "Failures:";
          return print_r($failures);
        }else{
            return 'success';
        }

    }
}

这将在我的模板中呈现图像:

<td id="head" height="80" width="640" colspan="3" valign="top" align="left">
<image src="[*imgsrc*]" width="140" height="80" alt="xxx"/>         
</td>
4

2 回答 2

1

我在 GMail 中也看到了这种行为,并认为这就是 GMail 显示带有嵌入图像的邮件的方式。

有关更多信息,请参阅此链接:
http ://www.getelastic.com/email-design-for-gmail/

您是否知道 Gmail 默认禁用 HTML 电子邮件中的图片,即使您的客户已将您添加到他或她的安全列表中?

于 2011-02-08T09:04:05.550 回答
1

哇,终于解决了。“图像”当然不是有效的 HTML 标记……在尝试了 3 个不同的 php 库后,我发现了这个……

  <td id="head" height="80" width="640" colspan="3" valign="top" align="left">
    <image src="[*imgsrc*]" width="140" height="80" alt="xxx"/>         
    </td>
于 2011-02-08T16:09:30.173 回答