duanmei1536 2012-10-17 19:03
浏览 22
已采纳

用php发送HTML电子邮件?

I have a script that sends an email using the paypal IPN after a successful purchase. How can I modify the script to send HTML email?

<?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
";

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

";

// 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: admin@domain.com";
$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 .= "

The details of your order are as follows:";
$email_msg .= "

" . "Transaction ID: " .  $txn_id ;
$email_msg .= "
" . "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.

" . $req;

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

}
}
fclose ($fp);
}
?>
  • 写回答

3条回答 默认 最新

  • dou6495 2012-10-17 19:08
    关注

    You need to send full headers with content type, not just mail_from. Heres an example

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

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

    In your code:

    $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);

    The $mail_From is the fourth parameter (headers). Create a new string that contains full headers for html email plus: $_From

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

    If you echo $headers it will be something like this

    MIME-Version:1.0
    Content-type:text/html;charset=iso-8859-1
    From:email@email.com
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 关于#java#的问题,请各位专家解答!
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
  • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?