joachip

Sending UTF-8 emails from PHP to gmail, yahoo and outlook

Feb 25th, 2014
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?
  2. $headers  = "Content-Transfer-Encoding: 8bit\n";
  3. $headers .= "Content-Type: text/html; charset=UTF-8\n";
  4. $subject = 'Danish subject test æøå ÆØÅ.';
  5. $body = "<!DOCTYPE HTML>\n<html>\nDanish subject test <b>æøå</b> ÆØÅ.\n</html>";
  6. mail('spam@email.com', "=?UTF-8?B?".base64_encode($subject)."?=", $body, $headers);
  7. ?>
Add Comment
Please, Sign In to add comment