2012-10-17 179 views
2

我有一個腳本,在成功購買後使用PayPal IPN發送電子郵件。我如何修改腳本以發送HTML電子郵件?用PHP發送HTML郵件?

<?php 

// read the post from PayPal system and add 'cmd' 
$req = 'cmd=_notify-validate'; 

foreach ($_POST as $key => $value) { 
$value = urlencode(stripslashes($value)); 
$req .= "&$key=$value"; 
} 

// post back to PayPal system to validate 

$header = "POST /cgi-bin/webscr HTTP/1.1\r\n"; 

// If testing on Sandbox use: 
// $header .= "Host: www.sandbox.paypal.com:443\r\n"; 
$header .= "Host: ipnpb.paypal.com:443\r\n"; 
$header .= "Content-Type: application/x-www-form-urlencoded\r\n"; 
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n"; 

// If testing on Sandbox use: 
//$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30); 
$fp = fsockopen ('ssl://ipnpb.paypal.com', 443, $errno, $errstr, 30); 

// assign posted variables to local variables 
$item_name = $_POST['item_name']; 
$item_number = $_POST['item_number']; 
$payment_status = $_POST['payment_status']; 
$payment_amount = $_POST['mc_gross']; 
$payment_currency = $_POST['mc_currency']; 
$txn_id = $_POST['txn_id']; 
$receiver_email = $_POST['receiver_email']; 
$payer_email = $_POST['payer_email']; 

//set email variables 
$From_email = "From: [email protected]"; 
$Subject_line = "Thanks"; 

$email_msg = "Thanks for purchasing my item. Your order will be delivered in 3-4 days. We  appreciate your business."; 
$email_msg .= "\n\nThe details of your order are as follows:"; 
$email_msg .= "\n\n" . "Transaction ID: " . $txn_id ; 
$email_msg .= "\n" . "Payment Date: " . $payment_date; 

if (!$fp) { 
// HTTP ERROR 
} else { 
fputs ($fp, $header . $req); 
while (!feof($fp)) { 
$res = fgets ($fp, 1024); 
if (strcmp ($res, "VERIFIED") == 0) { 
// check the payment_status is Completed 
// check that txn_id has not been previously processed 
// check that receiver_email is your Primary PayPal email 
// check that payment_amount/payment_currency are correct 
// process payment 

$mail_From = $From_email; 
$mail_To = $payer_email; 
$mail_Subject = $Subject_line; 
$mail_Body = $email_msg; 

mail($mail_To, $mail_Subject, $mail_Body, $mail_From); 


} 
else if (strcmp ($res, "INVALID") == 0) { 
// log for manual investigation 

$mail_From = $From_email; 
$mail_To = $receiver_email; 
$mail_Subject = "INVALID IPN POST"; 
$mail_Body = "INVALID IPN POST. The raw POST string is below.\n\n" . $req; 

mail($mail_To, $mail_Subject, $mail_Body, $mail_From); 

} 
} 
fclose ($fp); 
} 
?> 
+0

你是什麼意思的HTML電子郵件?這段代碼看起來很好。 – Flaxbeard

+0

有關如何執行此操作的示例,請參閱http://stackoverflow.com/questions/1361762/how-to-send-html-mails-using-pear-mail。 – bartlaarhoven

+0

我建議使用PEAR :: mail。它使得它非常容易和簡單... http://pear.php.net/package/Mail/redirected – rws907

回答

7

您需要發送包含內容類型的完整標題,而不僅僅是mail_from。這裏有一個例子

$headers = "MIME-Version: 1.0" . "\r\n"; 
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; 
$headers .= $mail_From . "\r\n"; 
mail($mail_To,$mail_Subject,$mail_Body,$headers); 

http://www.w3schools.com/php/func_mail_mail.asp

在您的代碼:

$ mail_From = $ FROM_EMAIL; $ mail_To = $ payer_email; $ mail_Subject = $ Subject_line; $ mail_Body = $ email_msg;

mail($ mail_To,$ mail_Subject,$ mail_Body,$ mail_From);

$ mail_From是第四個參數(標題)。創建一個包含完整的報頭的HTML郵件加上一個新的字符串:$ _From

$mail_From = $From_email; 
$mail_To = $payer_email; 
$mail_Subject = $Subject_line; 
$mail_Body = $email_msg; 
//start $headers 
$headers = "MIME-Version: 1.0" . "\r\n"; 
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; //adds content type to headers 
$headers .= $mail_From . "\r\n"; //adds the sender details 
mail($mail_To,$mail_Subject,$mail_Body,$headers); //sends the email 

如果回聲$頭它會像通過PHP這個

MIME-Version:1.0 
Content-type:text/html;charset=iso-8859-1 
From:[email protected] 
+0

我應該在哪裏放置標題?在//設置電子郵件變量?他們會不會干擾其他$頭? – Anthony

+0

我給你看了,標題是一對名稱值對,因此 – geekman

+0

標題是字符串的名稱值對,如圖所示....。=添加到字符串。 – geekman

2

只要將HTML放在郵件正文中,大多數郵件客戶端應該能夠弄清楚。

更正確的答案還包括郵件中適當的Content-Type標題(text/html)。

一個完整的答案會是我做的:

<?php 
$html = <<<HTML 
<!DOCTYPE HTML> 
<html> 
    <head> 
     <meta http-equiv="Content-Type" value="text/html; charset=iso-8859-1" /> 
     <title>Title here</title> 
    </head> 
    <body> 
     <p>My mail content here.</p> 
     <hr /> 
     <p style="font-size: 8pt; font-style: italic;">Some signature here</p> 
    </body> 
</html> 
HTML; 
$text = preg_replace("(\n{2,})","\n",strip_tags(str_replace(Array("\t","<hr />"),Array("","===================="),$html))); 
$seperator = uniqid(); 
mail("[email protected]","Title here", 
     "--".$seperator."\r\n" 
     ."Content-Type: text/plain\r\n\r\n" 
     .$text."\r\n" 
     ."--".$seperator."\r\n" 
     ."Content-Type: text/html\r\n\r\n" 
     .$html."\r\n" 
     ."--".$seperator."--", 
    "From: My name <[email protected]>\r\n" 
    ."MIME-Version: 1.0\r\n" 
    ."Content-Type: multipart/alternative; boundary=".$seperator); 
?> 

這不僅將所有正確的頭留在客戶端上沒有猜測,它還會自動生成一個純文本版爲用戶誰不」不想要HTML郵件。

0

發送HTML電子郵件使用完全相同的郵件功能文本電子郵件:

mail($to, $subject, $message, $headers); 

$to = '[email protected]'; 

$subject = 'Website Change Reqest'; 

$headers = "From: " . strip_tags($_POST['req-email']) . "\r\n"; 
$headers .= "Reply-To: ". strip_tags($_POST['req-email']) . "\r\n"; 
$headers .= "CC: [email protected]\r\n"; 
$headers .= "MIME-Version: 1.0\r\n"; 
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; 

$message = '<html><body>'; 
$message .= '<h1>Hello, World!</h1>'; 
$message .= '</body></html>'; 

來源和donwload上css tricks

可用