X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=email.php;h=74518ab17b95c461df87ce23f50527208ceb71fa;hp=92cb6f0a5ba15e1a55d1dec87650e1b37d29b8db;hb=HEAD;hpb=554b3215eda9d33d86b8bd30df28e02eabb89ae7 diff --git a/email.php b/email.php index 92cb6f0..74518ab 100644 --- a/email.php +++ b/email.php @@ -1,20 +1,9 @@ . - +# This program is in the public domain within the United States. Additionally, +# we waive copyright and related rights in the work worldwide through the CC0 +# 1.0 Universal public domain dedication, which can be found at +# http://creativecommons.org/publicdomain/zero/1.0/ # This function will SAFELY send e-mail (ie you can pass parameters to it @@ -41,7 +30,7 @@ function email($from, $to, $subject, $message, $reply_to = '', $cc = '', $bcc = if($to == '') { return 2; } #FIXME should allow many more characters here - $subject = ereg_replace("[^a-zA-Z0-9 _#'.:-]", '_', $subject); + $subject = preg_replace("|[^a-z0-9 _/#'.:&,-]|i", '_', $subject); $headers = "From: $from"; if($reply_to) { @@ -53,9 +42,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 { @@ -75,7 +63,7 @@ function email_header($addr) { return ''; } - if(ereg('<.*>$', $addr) !== false) { + if(preg_match('|<.*>$|', $addr) === 1) { # format 2 $div = strrpos($addr, '<'); $name = substr($addr, 0 , $div); @@ -83,7 +71,7 @@ function email_header($addr) { $email = substr($addr, $div + 1, -1); } else { $email = $addr; - $name = ereg_replace('@.*', '', $addr); + $name = preg_replace('|@.*|', '', $addr); } if(!valid_email($email)) { @@ -91,7 +79,7 @@ function email_header($addr) { } #FIXME should allow many more characters here - $name = ereg_replace("[^a-zA-Z0-9 _'.-]", '_', $name); + $name = preg_replace("|[^a-z0-9 _/'.-]|i", '_', $name); return $name . ' <' . $email . '>'; } @@ -100,5 +88,5 @@ function email_header($addr) { # return true if e-mail is formatted like a valid email address function valid_email($email) { - return ereg('^[0-9a-zA-Z_~.-]+@[0-9a-zA-Z.-]+\.[a-z]+$', $email) !== false; + return preg_match('|^[0-9a-zA-Z_~.+-]+@[0-9a-zA-Z.-]+\.[a-z]+$|', $email) === 1; }