We send the charset so we shouldn't need to do character conversion
git-svn-id: http://svn.automattic.com/wordpress/trunk@2277 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b5c9e98cf4
commit
26831e298d
|
@ -1573,9 +1573,6 @@ function wp_mail($to, $subject, $message, $headers = '', $more = '') {
|
|||
"Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"\n";
|
||||
}
|
||||
|
||||
if ( function_exists('mb_send_mail') )
|
||||
return @mb_send_mail($to, $subject, $message, $headers, $more);
|
||||
else
|
||||
return @mail($to, $subject, $message, $headers, $more);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue