php mail is getting cut off

后端 未结 2 1805
广开言路
广开言路 2021-01-03 15:11

I am sending a long HTML email via php\'s mail function on my localhost. It is consistently getting cut off and I can\'t figure out why.

Here\'s the code producing t

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-03 15:45

    Check your mail() method, it should include your content-type, like:

    mail($email, 'Thank You for Contacting PHPglue', $msg, "From: PHPglue@PHPglue.com\r\ncontent-type: text/html");
    

提交回复
热议问题