Skip to content

Instantly share code, notes, and snippets.

@kwd
Forked from jnaskali/gist:2000115
Created July 20, 2012 08:21
Show Gist options
  • Save kwd/3149565 to your computer and use it in GitHub Desktop.
Save kwd/3149565 to your computer and use it in GitHub Desktop.
PHP: Mail utf8
function mail_utf8($to, $subject = '(No subject)', $message = '', $header = '') {
$header_ = 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $header_ . $header);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment