PHP mail() - 如何设置优先级?

2022-08-30 12:15:12

有没有办法设置PHP mail()的优先级?我查看了在线手册,但我找不到任何参考资料。

通过优先级,我的意思是标头中的高,正常,低或1,2,3。因此,收件人知道邮件的紧迫性。

谢谢!


答案 1

这通常是通过在标头中设置以下字段来完成的:

  • “X-优先级”(值:从最高[1]到最低[5]的1到5- ),
  • “X-MSMail-优先级”(值:高、正常或低),
  • “重要性”(值:高、正常或低)。

请参阅以下示例(取自 php 的邮件函数文档):

<?php
        $headers = "MIME-Version: 1.0\n" ;
        $headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
        $headers .= "X-Priority: 1 (Highest)\n";
        $headers .= "X-MSMail-Priority: High\n";
        $headers .= "Importance: High\n";

 $status   = mail($to, $subject, $message,$headers);
?> 

答案 2
<?php 
        $headers = "MIME-Version: 1.0\n"; 
        $headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\n"; 
        $headers .= "X-Priority: 1 (Highest)\n"; 
        $headers .= "X-MSMail-Priority: High\n"; 
        $headers .= "Importance: High\n"; 

        $status = mail($to, $subject, $message, $headers); 
?>

寄件人: http://www.php.net/manual/en/function.mail.php#91058


推荐