Opened 8 years ago
Last modified 7 years ago
#39775 new defect (bug)
wp_mail miss send Content-Type with boundary when array header does not have other custom headers
Reported by: | kn007 | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | |
Component: | Keywords: | ||
Focuses: | Cc: |
Description
It's a PR send in github. https://github.com/WordPress/WordPress/pull/273
Fix empty charset in line 436.
Before:
Content-Type: multipart/alternative; charset=
After:
Content-Type: multipart/alternative; charset=UTF-8
fix $headers[] = "Content-Type: multipart/alternative; boundary=\"$boundary\"";
not send when not other headers.
Test Code:
<?php $boundary = md5( uniqid() . microtime() ); $to = 'wordpress@wordpress.org'; $subject = 'TEST'; $headers[] = "From: Wordpress <wordpress@wordpress.org>"; $headers[] = "Content-Type: multipart/alternative; boundary=\"$boundary\""; $body = "--$boundary\r\n" . "Content-Type: text/plain; charset=UTF-8\r\n"; $body .= 'test'; $body .= "--$boundary\r\n" . "Content-Type: text/html; charset=UTF-8\r\n"; $body .= '<div>test</div>'; wp_mail( $to, $subject, $body, $headers );
I could search some issue for this, like
http://wordpress.stackexchange.com/questions/191923/sending-multipart-text-html-emails-via-wp-mail-will-likely-get-your-domain-b
https://wordpress.org/support/topic/using-wp_mail-with-php-generated-attachments/
but still have same problem here.
Note: See
TracTickets for help on using
tickets.