1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

PM Email Notifications: Fixes #1487

This commit is contained in:
Cameron
2016-04-10 08:43:54 -07:00
parent 7d7ee21cbe
commit 2971fb184c
2 changed files with 6 additions and 4 deletions

View File

@@ -949,7 +949,7 @@ class e107Email extends PHPMailer
* @param boolean $bulkmail - set TRUE if this email is one of a bulk send; FALSE if an isolated email
* @return boolean|string - TRUE if success, error message if failure
*/
public function sendEmail($send_to, $to_name, $eml = '', $bulkmail = false)
public function sendEmail($send_to, $to_name, $eml = array(), $bulkmail = false)
{
if (count($eml))
{
@@ -1081,7 +1081,7 @@ class e107Email extends PHPMailer
*
* @return string none (message saved ready to send)
*/
public function MsgHTML($message, $basedir = '')
public function MsgHTML($message, $basedir = '', $advanced=false)
{
$tp = e107::getParser();