6

所以我正在尝试使用 PHP 发送一个相当简单的 HTML 电子邮件。过去三天我一直在尝试找到一个好的解决方案,并认为我找到了一个,但是当我测试它时,它无法正确发送。我从我引用的一个教程中借用了这段代码。测试代码如下:

<?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 回答