File size: 2.16Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
* PHPMailer Sendmail
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox
* @version $Id: mail.class.php 1666 2010-07-07 08:17:00Z Raymond_Benc $
*/
class Phpfox_Mail_Driver_Phpmailer_Mail implements Phpfox_Mail_Interface
{
/**
* PHPMailer Object
*
* @var Object
*/
private $_oMail = null;
/**
* Class constructor that loads PHPMailer class and sets all the needed variables.
*
* @return mixed FALSE if we cannot load PHPMailer, or NULL if we were.
*/
public function __construct()
{
$this->_oMail = new PHPMailer;
$this->_oMail->From = (Phpfox::getParam('core.email_from_email') ? Phpfox::getParam('core.email_from_email') : 'server@localhost.com');
$this->_oMail->FromName = (Phpfox::getParam('core.mail_from_name') === null ? Phpfox::getParam('core.site_title') : Phpfox::getParam('core.mail_from_name'));
$this->_oMail->WordWrap = 75;
$this->_oMail->CharSet = 'utf-8';
}
/**
* Sends out an email.
*
* @param mixed $mTo Can either be a persons email (STRING) or an ARRAY of emails.
* @param string $sSubject Subject message of the email.
* @param string $sTextPlain Plain text of the message.
* @param string $sTextHtml HTML version of the message.
* @param string $sFromName Name the email is from.
* @param string $sFromEmail Email the email is from.
* @return bool TRUE on success, FALSE on failure.
*/
public function send($mTo, $sSubject, $sTextPlain, $sTextHtml, $sFromName = null, $sFromEmail = null)
{
$this->_oMail->addAddress($mTo);
$this->_oMail->Subject = $sSubject;
$this->_oMail->Body = $sTextHtml;
$this->_oMail->AltBody = $sTextPlain;
if ($sFromName !== null)
{
$this->_oMail->FromName = $sFromName;
}
if ($sFromEmail !== null)
{
$this->_oMail->From = $sFromEmail;
}
if(!$this->_oMail->send())
{
$this->_oMail->clearAddresses();
return false;
// return Phpfox_Error::trigger($this->_oMail->ErrorInfo, E_USER_ERROR);
}
$this->_oMail->clearAddresses();
return true;
}
}