void buildMailer(
$pMessage)
|
|
Returns a PHPMailer with everything set except the recipients
$pMessage['subject'] - The subject $pMessage['message'] - The HTML body of the message $pMessage['alt_message'] - The Non HTML body of the message
Parameters:
void sendEmail(
$pSubject,
$pBody,
$pRecipients, [
$pHeaders = array()])
|
|
Sends an email to the specified recipients.
This is a convenience method for packages to be able to use the email sending features found in this package.
$pSubject - The Subject of the Email $pBody - The Body of the Email $pRecipients - An associative array with keys for email and optionally login and real_name
Parameters: