Guest User

Untitled

a guest
Dec 11th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. function mail_utf8($to, $from_user, $from_email, $subject = '(No subject)', $message = '') {
  3.  
  4. $from_user = "=?UTF-8?B?".base64_encode($from_user)."?=";
  5. $subject = "=?UTF-8?B?".base64_encode($subject)."?=";
  6.  
  7. $headers = "From: $from_user <$from_email>\r\n".
  8. "MIME-Version: 1.0" . "\r\n" .
  9. "Content-type: text/html; charset=UTF-8" . "\r\n";
  10.  
  11. return mail($to, $subject, $message, $headers);
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment