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 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题