2012-01-31 77 views
1

我試圖設置一個Web應用程序,完成後向具有附件的用戶發送電子郵件。我希望電子郵件既可以使用HTML格式,也可以使用文本格式,以確保每個人都可以查看它,而不管他們的郵件設置如何。我無法正常工作,所以我想知道是否有人可以用我的代碼發現問題。帶附件的HTML /文本電子郵件使用PHP

我使用的代碼如下。這被作爲另一個網站的模板,但我已經做了大量的閱讀,所以我粗略瞭解它是如何工作的。不幸的是,沒有足夠的理解來解決問題!

$firstname = $_POST['firstname']; 
$email = $_POST['email']; 
//define the receiver of the email 
$to = $email; 
//define the subject of the email 
$subject = "$firstname, thanks for using the One Minute Leveller"; 
//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: The Xenon Group\r\nReply-To: [email protected]"; 
//add boundary string and mime type specification 
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""; 
//read the atachment file contents into a string, 
//encode it with MIME base64, 
//and split it into smaller chunks 
$attachment = chunk_split(base64_encode(file_get_contents('Level3info.pdf'))); 
//define the body of the message. 
ob_start(); //Turn on output buffering 
?> 
--PHP-mixed-<?php echo $random_hash; ?> 

Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>" 

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

TEXT E-MAIL GOES HERE. ACTUAL CONTENT REMOVED 

--PHP-alt-<?php echo $random_hash; ?> 

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

<html><h1>HTML CONTENT GOES HERE. ACTUAL CONTENT REMOVED</h1></html> 

--PHP-alt-<?php echo $random_hash; ?>-- 

--PHP-mixed-<?php echo $random_hash; ?> 

Content-Type: application/pdf; name="Level3info.pdf" 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment 

<?php echo $attachment; ?> 

--PHP-mixed-<?php echo $random_hash; ?>-- 

<?php 
//copy current buffer contents into $message variable and delete current output buffer 
$message = ob_get_clean(); 
//send the email 
mail($to, $subject, $message, $headers); 

任何人都可以幫忙嗎?

+0

我會建議不要像這樣跳出和跳出PHP。它使你的代碼難以閱讀。 – Travesty3 2012-01-31 15:30:23

+0

我強烈建議使用現有的類來完成這樣的任務!見http://pear.php.net/manual/en/package.mail.mail-mime.addattachment.php – powtac 2012-01-31 15:31:51

回答

2

的第一件事,不要重新發明輪子 - 使用一個庫,如梨郵件http://pear.php.net/package/Mail/redirected

其次,你有你的標題和不允許之間的空白。

從郵件RFC:

有本標準幾個地方的意見和FWS可以 自由地插入。爲了適應該語法,針對「CFWS」的附加標記 被定義用於評論和/或FWS可以發生的地方。 然而,在CFWS在本標準中時,它不能在這樣的方式摺疊的報頭字段的任何行由 完全的WSP字符,沒有別的插入 。

親切的問候,

約翰

+0

您好,感謝這一點 - 梨郵件證明了一百萬次更輕鬆! – Chris 2012-01-31 17:37:36

1

這是我使用的作品。它沒有考慮到的文字版本與HTML版本...只是唯一的HTML版本,但也許它會引導你走向一個答案:

<?php 
    $mime_boundary = md5(uniqid(time())); 

    // to 
    $to = $_REQUEST["to"]; 
    if (is_array($to)) $to = implode(", ", $to); 

    // from 
    $header = "From:". ($_REQUEST["fromName"] == "" ? $_REQUEST["fromAddress"] : "{$_REQUEST["fromName"]} <{$_REQUEST["fromAddress"]}>") ."\r\n"; 
    $header .= "MIME-Version:1.0\r\n"; 
    $header .= "Content-Type:multipart/mixed; boundary=\"{$mime_boundary}\"\r\n\r\n"; 

    // message 
    $header .= "--{$mime_boundary}\r\n"; 
    $header .= "Content-Type:text/html; charset=\"ISO-8859-1\"\r\n"; 
    $header .= "Content-Transfer-Encoding:7bit\r\n\r\n"; 
    $header .= "<html><head><style type=\"text/css\">body { font:10pt Arial; }</style></head><body>". str_replace("\r", "", str_replace("\n", "<br />", $_REQUEST["message"])) ."</body></html>\r\n\r\n"; 

    // attachment 
    $attachments = (array)$_REQUEST["attachment"]; 
    $attachmentNames = (array)$_REQUEST["attachmentName"]; 
    for ($i = 0; $i < count($attachments); $i++) 
    { 
     if (empty($attachmentNames[$i])) 
      $attachmentNames[$i] = "attachment". ($i+1) .".txt"; 

     if (!base64_decode($attachments[$i], true)) 
      $attachments[$i] = base64_encode($attachments[$i]); 
     else 
      $attachments[$i] = str_replace("\r", "", str_replace("\n", "", str_replace(" ", "+", $attachments[$i]))); 

     $header .= "--{$mime_boundary}\r\n"; 
     $header .= "Content-Type:application/octet-stream; name=\"{$attachmentNames[$i]}\"\r\n"; 
     $header .= "Content-Transfer-Encoding:base64\r\n"; 
     $header .= "Content-Disposition:attachment; filename=\"{$attachmentNames[$i]}\"\r\n"; 
     $header .= "{$attachments[$i]}\r\n\r\n"; 
    } 

    if (mail($to, $_REQUEST["subject"], "", $header)) 
     echo "SUCCESS"; 
    else 
     echo "FAIL"; 
?> 
+0

感謝您抽出寶貴的時間來回答,其實我已經走了與使用PEAR郵件庫,不是做一切從頭開始,我可以得到的text/html和附件容易得多!乾杯! – Chris 2012-01-31 17:39:37

1

也許你想採取PHPmailer看看。它提供了所有你想使用的功能,但在比內置的郵件()函數一個更清潔,UPTODATE標準的方式。那裏有一些很好的教程。

+0

感謝這個,其實我已經有PEAR郵件過去了約翰(上圖)的建議,但這個想法是一樣的 - 不是搞亂嘗試一切從頭開始編寫要容易得多! – Chris 2012-01-31 17:38:42

相關問題