2

さまざまなプレーン テキスト バージョンと HTML バージョンのコンテンツを含む、正しくフォーマットされたマルチパート/代替 MIME メールを送信していると思います。ただし、電子メール クライアント (私は 3 つの異なるクライアントを試しました) で受信すると、電子メールの送信元が変更されたように見えます。別の境界テキストが使用され、プレーン テキスト コンテンツが HTML コンテンツに変更されています (HTML タグが削除されています)。

これは私のPHPスクリプトです:

<?php
$boundary = md5(date('r', time())); 
$to = '$to_email_address';
$subject = 'Test HTML email'; 
$headers =  "From: $from_email_address\r\n" .
            "Content-Type: multipart/alternative; boundary=\"" . $boundary . "\""; 
$message = "--" . $boundary . "\r\n" .
            "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n" . 
            "Content-Transfer-Encoding: 7bit\r\n" .
            "\r\n" .
            "Hello World!!!\r\n" .
            "This is simple text email message.\r\n" .
            "\r\n" .
            "--" . $boundary . "\r\n" . 
            "Content-Type: text/html; charset=\"iso-8859-1\"\r\n" . 
            "Content-Transfer-Encoding: 7bit\r\n" .
            "\r\n" .
            "<h2>Hello World!</h2>\r\n" .
            "<p>This is something with <b>HTML</b> formatting.</p>\r\n" .
            "\r\n" .
            "--" . $boundary . "--\r\n";

$result = mail($to, $subject, $message, $headers);
echo $result ? "Mail sent" : "Mail failed";
?>

これは、電子メール クライアントから見た未加工の電子メール ソースです。

Return-Path: <from_email_address>
From: <from_email_address>
To: <to_email_address>
Subject: Test HTML email
Date: Fri, 22 Feb 2013 10:22:30 -0000
Message-ID: <01d001ce10e6$8c41d450$a4c57cf0$@com>
MIME-Version: 1.0
Content-Type: multipart/alternative;
    boundary="----=_NextPart_000_01CC_01CE10E6.8C41D450"
X-Mailer: Microsoft Office Outlook 12.0
Thread-Index: Ac4Q5obGqVqbDjA7SDSMnVZDykxxhA==
X-OlkEid: EE843820EF8935D69CB57C40B3E9F64C8874FA01

This is a multi-part message in MIME format.

------=_NextPart_000_01CC_01CE10E6.8C41D450
Content-Type: text/plain;
    charset="iso-8859-1"
Content-Transfer-Encoding: 7bit


Hello World!


This is something with HTML formatting.


------=_NextPart_000_01CC_01CE10E6.8C41D450
Content-Type: text/html;
    boundary="b04d8008be2af4ce2409beb4e26761bd";
    charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>

------=_NextPart_000_01CC_01CE10E6.8C41D450--

受信クライアントが意図したプレーン テキスト コンテンツを確実に受信できるようにするにはどうすればよいですか?

助けてくれてありがとう、スチュアート

4

2 に答える 2

2

私は問題を見つけたと思います。私が送ったものは大丈夫でした。ただし、別の電子メール クライアントを使用して電子メール ソースを表示するために、Microsoft Outlook を使用して電子メール アカウント間で受信した電子メールを移動していました (Outlook では電子メールの生のソースを表示できないため)。Outlook はその過程で電子メールを変更していました。どっ!男子生徒エラー!

スチュアート

于 2013-02-22T13:28:09.417 に答える
-1

メールの HTML コンテンツをサポートするため。ヘッダーに次を追加する必要があります。

$header .="Content-Type: text/html; charset=ISO-8859-1\r\n";

あなたのコードでは、

"Content-Type: multipart/alternative"
于 2013-02-22T11:07:46.703 に答える