From 4a8a138374485bf4b73dc1dca38a60eb211600f2 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Thu, 19 Jun 2014 15:16:06 -0400 Subject: [PATCH] allow / in email subjects and names --- email.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/email.php b/email.php index 946edf2..65c71c3 100644 --- a/email.php +++ b/email.php @@ -41,7 +41,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 = ereg_replace("[^a-zA-Z0-9 _/#'.:&,-]", '_', $subject); $headers = "From: $from"; if($reply_to) { @@ -90,7 +90,7 @@ function email_header($addr) { } #FIXME should allow many more characters here - $name = ereg_replace("[^a-zA-Z0-9 _'.-]", '_', $name); + $name = ereg_replace("[^a-zA-Z0-9 _/'.-]", '_', $name); return $name . ' <' . $email . '>'; } -- 1.7.10.4