Post by linlong3388 » Mon Feb 01, 2016 6:03 pm

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;
    }
}
:-\

Newbie

Posts

Joined
Mon Feb 01, 2016 5:55 pm
Who is online

Users browsing this forum: No registered users and 6 guests