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 に答える