Page 1 of 1

some server host not send email?

Posted: Mon Feb 01, 2016 6:03 pm
by linlong3388
some server host not send email. I find this problem is on

system/library/mail.php Line 31

Code: Select all

public function setFrom($from) {
          $this->from = $from;
} 
more than one from

so I fix

Code: Select all

public function setFrom($from) {
   $from_ary = explode(',', $from);
   if(COUNT($from_ary) >= 2){
          $this->from = $from_ary[0];
    }else{
         $this->from = $from;
    }
}
:-\