Index: trunk/core/kernel/utility/email.php =================================================================== diff -u -r3510 -r3527 --- trunk/core/kernel/utility/email.php (.../email.php) (revision 3510) +++ trunk/core/kernel/utility/email.php (.../email.php) (revision 3527) @@ -399,7 +399,13 @@ } - $send_params['recipients'] = array($this->To); // The recipients (can be multiple) + if (strpos($this->To, ',') !== false) { + $this->To = str_replace(' ', '', $this->To); + $send_params['recipients'] = explode(',', $this->To); + } + else { + $send_params['recipients'] = array($this->To); // The recipients (can be multiple) + } $send_params['headers'] = array( 'From: '.$this->HeadersArray['From'], // Headers 'To: '.$this->HeadersArray['To'],