X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=email.php;h=a1e501a3fc070f52ca4466f4e9cf62180d43cda0;hp=b3d4925f5ed89e6eddea073dd8098cde9416f440;hb=062d46e16429f2e55573567518cb01c83b319ac4;hpb=6c27f346217f7b4b8b24064371f2461cf57c6167 diff --git a/email.php b/email.php index b3d4925..a1e501a 100644 --- a/email.php +++ b/email.php @@ -2,21 +2,18 @@ # Copyright (C) 2006 Jason Woofenden # -# This file is part of wfpl. -# -# wfpl is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free -# Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. -# -# wfpl is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for -# more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with wfpl; if not, write to the Free Software Foundation, Inc., 51 -# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . @@ -35,7 +32,7 @@ # address fields (from, to, cc, bcc) can be in either of these formats: # 1) me@foo.com 2) Me Who # 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 +41,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 +74,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 +90,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 +99,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; }