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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵