最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugin development - wp_mail() headers multipartalternative

programmeradmin1浏览0评论

I am trying to send email via wp_mail() containing both plain text, as well as HTML body.

When I am setting up headers like this:

  $headers = "MIME-Version: 1.0 \r\n";
  //$headers .= "From: Dawid Adach\r\n";
  $headers .= "Reply-To: [email protected] \r\n";
  $headers .= "X-Mailer: PHP/" . phpversion() . "\r\n";

  //$headers .= "To: ".$email."\r\n";
  $headers .= "Content-Type: multipart/alternative;boundary=" . $boundary . "\r\n";

and later on content:

  //Plain text body
  $message .= "Hello,\nThis is a text email, the text/plain version.
  \n\nRegards,\nYour Name";
  $message .= "\r\n\r\n--" . $boundary . "\r\n";
  $message .= "Content-type: text/html;charset=utf-8\r\n\r\n";

  //Html body
  $message .= '
<!--my html comes here -->
    </div>
    ';
  $message .= "\r\n\r\n--" . $boundary . "--";

It doesn't work. The entire body is treated like a plain HTML. When I check an original message I can see that new line chars aren't interpreted correctly.

Reply-To: [email protected] X-Mailer:PHP/7.0.8Content-Type:
 multipart/[email protected]; ,
 [email protected]

Second thing is that when I try to set header "From: " wp_mail returns 0 and doesn't send anything.

I was going trough Sending multipart (text/html) emails via wp_mail() will likely get your domain banned , however I cannot overwrite wp_mail function so I have to use original one.

发布评论

评论列表(0)

  1. 暂无评论