Проблемы с отправкой составного / альтернативного письма с PHP - PullRequest
7 голосов
/ 26 марта 2009

Вот скрипт, который строит / отправляет электронное письмо:

$boundary = md5(date('U'));

$to = $email;
$subject = "My Subject";

$headers = "From: myaddress@mydomain.com" . "\r\n".
           "X-Mailer: PHP/".phpversion() ."\r\n".
           "MIME-Version: 1.0" . "\r\n".
           "Content-Type: multipart/alternative; boundary=--$boundary". "\r\n".
           "Content-Transfer-Encoding: 7bit". "\r\n";

$text = "You really ought remember the birthdays";     
$html = '<html>
    <head>
      <title>Birthday Reminders for August</title>
    </head>
    <body>
      <p>Here are the birthdays upcoming in August!</p>
      <table>
        <tr>
          <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
        </tr>
        <tr>
          <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
        </tr>
        <tr>
          <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
        </tr>
      </table>
    </body>
    </html>
    ';

$message = "Multipart Message coming up" . "\r\n\r\n".
       "--".$boundary.
       "Content-Type: text/plain; charset=\"iso-8859-1\"" .
       "Content-Transfer-Encoding: 7bit".
       $text. 
       "--".$boundary. 
       "Content-Type: text/html; charset=\"iso-8859-1\"". 
       "Content-Transfer-Encoding: 7bit". 
       $html.
       "--".$boundary."--";



mail("toAddress@example.com", $subject, $message, $headers);

Он отправляет сообщение очень хорошо, и мой получатель получает его, но они получают все это в текстовом / обычном виде, а не в multipart / альтернативном. Просмотр источника полученного сообщения дает следующее (много удаленных писем):

Delivered-To: myrecipient@example.com
Received: by 10.90.100.4 with SMTP id x4cs111413agb;
    Wed, 25 Mar 2009 16:39:32 -0700 (PDT)
Received: by 10.100.153.6 with SMTP id a6mr85081ane.123.1238024372342;
    Wed, 25 Mar 2009 16:39:32 -0700 (PDT)
Return-Path: <xxx@xxxx.com>
--- snip ---
Date: Wed, 25 Mar 2009 17:37:36 -0600 (MDT)
Message-Id: <200903252337.n2PNbaw2019541@www.xxxxxxx.com>
To: trevor@saturdayplace.com
Subject: My Subject
From: me@mydomain.com
X-Mailer: PHP/4.3.9
MIME-Version: 1.0
Content-Type: text/plain;
boundary="--66131caf569f63b24f43d529d8973560"
Content-Transfer-Encoding: 7bit
X-OriginalArrivalTime: 25 Mar 2009 23:38:30.0531 (UTC) FILETIME=[CDC4E530:01C9ADA2]
X-TM-AS-Product-Ver: SMEX-8.0.0.1181-5.600.1016-16540.005
X-TM-AS-Result: No--4.921300-8.000000-31
X-TM-AS-User-Approved-Sender: No
X-TM-AS-User-Blocked-Sender: No


Multipart Message coming up

--66131caf569f63b24f43d529d8973560
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

You really ought remember the birthdays

--66131caf569f63b24f43d529d8973560
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

<html>
    <head>
      <title>Birthday Reminders for August</title>
    </head>
    <body>
      <p>Here are the birthdays upcoming in August!</p>
      <table>
        <tr>
          <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
        </tr>
        <tr>
          <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
        </tr>
        <tr>
          <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
        </tr>
      </table>
    </body>
    </html>


--66131caf569f63b24f43d529d8973560--

Похоже, что заголовок типа контента меняется по пути от multipart / альтернативы text / plain. Я не являюсь системным администратором, поэтому, если это проблема с sendmail, я в порядке. Есть предложения?

Ответы [ 4 ]

11 голосов
/ 26 марта 2009

Линия

"Content-Type: multipart/alternative; boundary=--$boundary". "\r\n".

должно быть

"Content-Type: multipart/alternative; boundary=$boundary". "\r\n".

Вы не включаете тире в заголовок.

4 голосов
/ 26 июня 2012

Чтобы заставить это работать должным образом для меня, мне также нужно было добавить "\ r \ n" в конце каждой строки заголовка, два из них ("\ r \ n \ r \ n") в конце из строк перед текстом и HTML-телами, и по одной в конце каждого тела. В результате получается что-то вроде этого:

$message = "Multipart Message coming up" . "\r\n\r\n".
       "--".$boundary."\r\n".
       "Content-Type: text/plain; charset=\"iso-8859-1\""."\r\n".
       "Content-Transfer-Encoding: 7bit"."\r\n".
       $text."\r\n". 
       "--".$boundary."\r\n". 
       "Content-Type: text/html; charset=\"iso-8859-1\""."\r\n". 
       "Content-Transfer-Encoding: 7bit"."\r\n".
       $html."\r\n".
       "--".$boundary."--";
2 голосов
/ 26 марта 2010

используйте "\ n" вместо "\ r \ n", похоже, что qmail имеет проблемы с "\ r"

0 голосов
/ 26 марта 2009

Просто мысль, но может быть намного проще просто с чем-то вроде phpmailer или Zend_Mail .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...