X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=email.php;h=1af8f9226f6fb7876553509e1e86ce2ddbfe3f14;hb=83b8f0d0aa999a5074e885e9e7ecd072df6ca56c;hp=c7ae44f84cf6681fb1f7a5a3186c8576fdd6fda1;hpb=cb1875dcb2b07644dfcd93fb652c1484119db28d;p=wfpl.git diff --git a/email.php b/email.php index c7ae44f..1af8f92 100644 --- a/email.php +++ b/email.php @@ -53,9 +53,8 @@ function email($from, $to, $subject, $message, $reply_to = '', $cc = '', $bcc = if($bcc) { $headers .= "\r\nBCC: $bcc"; } - #header('Content-Type: text/plain'); - #print_r(array($to, $subject, $message, $headers)); - #exit(); + $headers .= "\r\nContent-type: text/plain; charset=UTF-8"; + if(mail($to, $subject, $message, $headers)) { return 0; } else {