X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=email.php;h=74518ab17b95c461df87ce23f50527208ceb71fa;hp=8140ded442fcdb499eb8ae2d6c6676644cde347e;hb=HEAD;hpb=22d5fb7ab7d4ee86bd59e194387dca268bd577a1 diff --git a/email.php b/email.php index 8140ded..74518ab 100644 --- a/email.php +++ b/email.php @@ -1,23 +1,9 @@ # returns 0 on success -function email($from, $to, $subject, $message, $cc = '', $bcc = '') { +function email($from, $to, $subject, $message, $reply_to = '', $cc = '', $bcc = '') { if(($from = email_header($from)) === false) { return 1; } if(($to = email_header($to)) === false) { return 2; } if(($cc = email_header($cc)) === false) { return 3; } @@ -44,15 +30,20 @@ function email($from, $to, $subject, $message, $cc = '', $bcc = '') { if($to == '') { return 2; } #FIXME should allow many more characters here - $subject = ereg_replace("[^a-zA-Z _'.-]", '_', $subject); + $subject = preg_replace("|[^a-z0-9 _/#'.:&,-]|i", '_', $subject); $headers = "From: $from"; + if($reply_to) { + $headers .= "\r\nReply-To: $reply_to"; + } if($cc) { $headers .= "\r\nCC: $cc"; } if($bcc) { $headers .= "\r\nBCC: $bcc"; } + $headers .= "\r\nContent-type: text/plain; charset=UTF-8"; + if(mail($to, $subject, $message, $headers)) { return 0; } else { @@ -72,14 +63,15 @@ function email_header($addr) { return ''; } - if(ereg('<.*>$', $addr) !== false) { + if(preg_match('|<.*>$|', $addr) === 1) { # format 2 - list($name, $email) = split('<', $addr); + $div = strrpos($addr, '<'); + $name = substr($addr, 0 , $div); $name = rtrim($name); - $email = substr($email, 0, -1); # get rid of the '>' at the end + $email = substr($addr, $div + 1, -1); } else { $email = $addr; - $name = ereg_replace('@.*', '', $addr); + $name = preg_replace('|@.*|', '', $addr); } if(!valid_email($email)) { @@ -87,7 +79,7 @@ function email_header($addr) { } #FIXME should allow many more characters here - $name = ereg_replace("[^a-zA-Z _'-]", '_', $name); + $name = preg_replace("|[^a-z0-9 _/'.-]|i", '_', $name); return $name . ' <' . $email . '>'; } @@ -96,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; }