簡體   English   中英

使用php郵件在電子郵件中未顯示圖片

[英]image not showing in email using php mail

我正在嘗試使用php代碼發送電子郵件郵件正在工作,但圖像未進入郵件。 圖像src路徑帶有編碼字符串,如下所示

<img style="width:100%" src="https://ci6.googleusercontent.com/proxy/NT6fQckS1LLRnuTUJnW0Fp2qUujk_Cpv9kV1hwoKQADwL8XU7fo4=s0-d-e1-ft#http://header.png" class="CToWUd a6T" tabindex="0">

<?php
        $to = $_REQUEST['email'];
        $subject = 'Winning prize';
        $email_id =  'info@sample.com';
        $headers = "From: " . strip_tags($email_id) . "\r\n";
        $headers .= "Reply-To: " . strip_tags($email_id) . "\r\n";
        $headers .= "CC: satishv@sample.com";
        $headers .= "MIME-Version: 1.0\r\n";
        $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
      $message = '<html>
       <head>
          <title></title>
       </head>
       <body>
          <div style="border:1px solid #e96000; width: 600px;">
          <table style="color: #777;font-family: sans-serif;" width="600">
             <tr>
                <td style="padding:0px 0">
                   <img style="width: 100%;" src="header.png">
                </td>
             </tr>
             <tr>
                <td><span style="font-family: sans-serif;">Hey</span><span style="font-family: sans-serif;margin-left: 5px;">'.$address['customer_name'].'!,</span></td>
             </tr>
             <tr>
                <td style="padding:20px 0 0 20px"><span style="font-family: sans-serif;">Congratualtion! The product is Yours.</span></td>
             </tr>

          </table>
          <table style="color: #777;font-family: sans-serif;text-align: center;" width="600">   
             <tr>
                <td colspan="4" style="padding: 30px 0;border-top: 1px solid #e96000;border-bottom: 1px solid #e96000;"><span>Once Your Package ships we will send your a tracking number Once Your Package ships we will send your a tracking number Once Your Package ships we will send your a tracking number </span></td>
             </tr>
          </table>
       </div>
       </body>
    </html>';
        $result = mail($to, $subject, $message, $headers);

?>

上面的代碼是工作文件,只是圖像沒有進入郵件

大多數電子郵件客戶端會阻止圖像。 但是,您仍然可以顯示圖像。 您必須使用絕對圖像源URL。 舉個例子

<img style="width: 100%;" src="header.png">

改成

<img style="width: 100%;" src="http://www.YourSite.com/header.png">

請確保路徑中存在該圖像。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM