Fixing issue when sending email with smtp

master
Nathan Adams 2015-10-25 22:24:19 -05:00
parent b860b18711
commit ccafac393d
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ class Pluf_Mail
{
$bccemails[] = $admin[1];
}
$this->headers["BCC"] = implode(",", $bccemails);
$this->headers["Bcc"] = implode(",", $bccemails);
$this->to_address .= "$dest," . implode(", ", $bccemails);
}
}