Skip to content

Instantly share code, notes, and snippets.

@WISHPRO
Forked from ricardodantas/php-email-to.utf8.php
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save WISHPRO/886d56e6277b5fedfb45 to your computer and use it in GitHub Desktop.

Select an option

Save WISHPRO/886d56e6277b5fedfb45 to your computer and use it in GitHub Desktop.
function utf8mail($to,$s,$body,$from_name="x",$from_a = "info@x.com", $reply="info@x.com")
{
$s= "=?utf-8?b?".base64_encode($s)."?=";
$headers = "MIME-Version: 1.0\r\n";
$headers.= "From: =?utf-8?b?".base64_encode($from_name)."?= <".$from_a.">\r\n";
$headers.= "Content-Type: text/plain;charset=utf-8\r\n";
$headers.= "Reply-To: $reply\r\n";
$headers.= "X-Mailer: PHP/" . phpversion();
mail($to, $s, $body, $headers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment