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:
saxmatt 2005-02-12 01:22:36 +00:00
parent b5c9e98cf4
commit 26831e298d
1 changed files with 1 additions and 4 deletions

View File

@ -1573,10 +1573,7 @@ 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);
return @mail($to, $subject, $message, $headers, $more);
}
if ( !function_exists('wp_login') ) :