PHP mail() - How to set Priority?

前端 未结 6 1852
不知归路
不知归路 2020-12-13 07:05

Is there any way to set the priority of PHP mail()? I looked at the online manual but I can\'t find any reference to it.

By priority, I mean High, Normal, Low or 1,

6条回答
  •  -上瘾入骨i
    2020-12-13 07:27

    Call it with the X-Priority header in the 4th parameter:

    mail ( $to, $subject, $message , "X-Priority: 1")
    

提交回复
热议问题