6

そこで、PHP を使用してかなり単純な HTML メールを送信しようとしています。過去 3 日間、適切な解決策を見つけようと試みましたが、解決策が見つかったと思いますが、テストすると正しく送信されません。このコードは、参照していたチュートリアルの 1 つから借用しました。テストコードは次のとおりです。

<?php
//define the receiver of the email
$to = 'myemail@gmail.com';
//define the subject of the email
$subject = 'Test HTML email'; 
//create a boundary string. It must be unique 
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time())); 
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/alternative; boundary=\"".$random_hash."\""; 
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--<?php echo $random_hash; ?>  
Content-Type: text/plain; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit

Hello World!!! 
This is simple text email message. 

--<?php echo $random_hash; ?>  
Content-Type: text/html; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit

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

--<?php echo $random_hash; ?>--
<?
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed" 
echo $mail_sent ? "Mail sent" : "Mail failed";
?>

問題は、メールは問題なく送信されるものの、プレーン テキストとして送信されるか、Gmail で空白のメッセージが送信されることです。理由はありますか?

4

1 に答える 1

7

もちろん、これにはswiftなどのライブラリを使用するように指示する必要がありますが、これは良い演習だと思うので、何が問題なのかを説明します:)

行末が間違っているからです。特に指定のない限り、メール メッセージの行末は CRLF ( \r\n) ですが、ブロックの行区切りob_start()は LF ( ) のみである可能性があります。\n

これにより、GMail が電子メール メッセージを誤って解釈し、代わりに何も表示しなくなります。私の場合、空のダウンロードファイルが表示されます;)

于 2012-08-24T23:23:35.273 に答える