dsiv4041 2015-08-25 00:55
浏览 53
已采纳

PHP mail()标头

I have the following headers that I want to pass to the mail() function:

$headers = "MIME-Version: 1.0
";
$headers .= "X-Mailer: PHP/" . phpversion()."
";
$headers .= "From:".$sender_email."
";
$headers .= "Subject:".$subject."
";
$headers .= "Reply-To: ".$sender_email."" . "
";
$headers .= "Content-Type: multipart/mixed; boundary=".md5('boundary1')."

";

$headers .= "--".md5('boundary1')."
";
$headers .= "Content-Type: multipart/alternative;  boundary=".md5('boundary2')."

";

$headers .= "--".md5('boundary2')."
";
$headers .= "Content-Type: text/plain; charset=ISO-8859-1

";
$headers .= $message."

";

$headers .= "--".md5('boundary2')."--
";
$headers .= "--".md5('boundary1')."
";
$headers .= "Content-Type:  ".$file_type."; ";
$headers .= "name=\"".$file_name."\"
";
$headers .= "Content-Transfer-Encoding:base64
";
$headers .= "Content-Disposition:attachment; ";
$headers .= "filename=\"".$file_name."\"
";
$headers .= "X-Attachment-Id:".rand(1000,9000)."

";
$headers .= $encoded_content."
";
$headers .= "--".md5('boundary1')."--"; 

$sentMail = @mail($recipient_email, $subject, $message, $headers);

Since I don't require the user to provide an e-mail address, can i exclude the "From" and Reply-To" fields and let the server auto-complete those values or would this action result in a malformed headers?

  • 写回答

1条回答 默认 最新

  • dongnaoxia0927 2015-08-25 01:00
    关注

    The server will automatically fill in the From line. Depending on the OS, it either gets the default From header from php.ini or from the username that runs PHP (e.g. www-user@yourdomain.com).

    By default there's no Reply-to, so replies are sent to the From address. This header is only needed when you want replies to go to a different address, so in your case there's no need for it.

    If no replies are wanted you could let it default, but a common approach is to put an address like NoReply@yourdomain.com in the From line. This way, if they do reply, they'll get a bounce message saying that the account doesn't exist.

    You're also putting the message body into $headers, which isn't right. It's working because you also put a blank line before them -- that's treated as the separator between the headers and the message, so everything after that is actually sent in the body. But you shouldn't depend on this, so those lines should be sent as the message argument in mail().

    $headers = "MIME-Version: 1.0
    ";
    $headers .= "X-Mailer: PHP/" . phpversion()."
    ";
    $headers .= "From: NoReply@yourdomain.com
    ";
    $headers .= "Subject:".$subject."
    ";
    $headers .= "Content-Type: multipart/mixed; boundary=".md5('boundary1')."
    
    ";
    
    $body= "--".md5('boundary1')."
    ";
    $body .= "Content-Type: multipart/alternative;  boundary=".md5('boundary2')."
    
    ";
    
    $body .= "--".md5('boundary2')."
    ";
    $body .= "Content-Type: text/plain; charset=ISO-8859-1
    
    ";
    $body .= $message."
    
    ";
    
    $body .= "--".md5('boundary2')."--
    ";
    $body .= "--".md5('boundary1')."
    ";
    $body .= "Content-Type:  ".$file_type."; ";
    $body .= "name=\"".$file_name."\"
    ";
    $body .= "Content-Transfer-Encoding:base64
    ";
    $body .= "Content-Disposition:attachment; ";
    $body .= "filename=\"".$file_name."\"
    ";
    $body .= "X-Attachment-Id:".rand(1000,9000)."
    
    ";
    $body .= $encoded_content."
    ";
    $body .= "--".md5('boundary1')."--"; 
    
    $sentMail = @mail($recipient_email, $subject, $body, $headers);
    

    There also seems to be no reason for multipart/alternative in the first body section, since you're not sending multiple versions of $message.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献