some server host not send email?
Posted: 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
more than one from
so I fix

system/library/mail.php Line 31
Code: Select all
public function setFrom($from) {
$this->from = $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;
}
}
