2010-09-15 11:10:12 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare API: Sending mail via PHPMailer
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage mail
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once(EGW_API_INC.'/class.phpmailer.inc.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log mails to log file specified in $GLOBALS['egw_info']['server']['log_mail']
|
|
|
|
* or regular error_log for true (can be set either in DB or header.inc.php).
|
2011-02-28 22:10:16 +01:00
|
|
|
*
|
2010-09-15 11:10:12 +02:00
|
|
|
* This class does NOT use anything EGroupware specific, it acts like PHPMail, but logs.
|
|
|
|
*/
|
|
|
|
class egw_mailer extends PHPMailer
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor: always throw exceptions instead of echoing errors and EGw pathes
|
|
|
|
*/
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct(true); // throw exceptions instead of echoing errors
|
2011-02-28 22:10:16 +01:00
|
|
|
|
2010-09-15 11:10:12 +02:00
|
|
|
// setting EGroupware specific path for PHPMailer lang files
|
|
|
|
list($lang,$nation) = explode('-',$GLOBALS['egw_info']['user']['preferences']['common']['lang']);
|
|
|
|
$lang_path = EGW_SERVER_ROOT.'/phpgwapi/lang/';
|
|
|
|
if ($nation && file_exists($lang_path."phpmailer.lang-$nation.php")) // atm. only for pt-br => br
|
|
|
|
{
|
|
|
|
$lang = $nation;
|
|
|
|
}
|
2011-12-15 13:45:44 +01:00
|
|
|
if (!$this->SetLanguage((empty($lang)?'en':$lang),$lang_path))
|
2010-09-15 11:10:12 +02:00
|
|
|
{
|
|
|
|
$this->SetLanguage('en',$lang_path); // use English default
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log mails to log file specified in $GLOBALS['egw_info']['server']['log_mail']
|
|
|
|
* or regular error_log for true (can be set either in DB or header.inc.php).
|
2011-02-28 22:10:16 +01:00
|
|
|
*
|
2010-09-15 11:10:12 +02:00
|
|
|
* We can NOT supply this method as callback to phpMailer, as phpMailer only accepts
|
|
|
|
* functions (not methods) and from a function we can NOT access $this->ErrorInfo.
|
2011-02-28 22:10:16 +01:00
|
|
|
*
|
2010-09-15 11:10:12 +02:00
|
|
|
* @param boolean $isSent
|
|
|
|
* @param string $to
|
|
|
|
* @param string $cc
|
|
|
|
* @param string $bcc
|
|
|
|
* @param string $subject
|
|
|
|
* @param string $body
|
|
|
|
*/
|
|
|
|
protected function doCallback($isSent,$to,$cc,$bcc,$subject,$body)
|
|
|
|
{
|
|
|
|
if ($GLOBALS['egw_info']['server']['log_mail'])
|
|
|
|
{
|
|
|
|
$msg = $GLOBALS['egw_info']['server']['log_mail'] !== true ? date('Y-m-d H:i:s')."\n" : '';
|
|
|
|
$msg .= ($isSent ? 'Mail send' : 'Mail NOT send').
|
|
|
|
' to '.$to.' with subject: "'.trim($subject).'"';
|
|
|
|
|
2011-02-28 22:10:16 +01:00
|
|
|
$msg .= ' from instance '.$GLOBALS['egw_info']['user']['domain'].' and IP '.egw_session::getuser_ip();
|
|
|
|
$msg .= ' from user #'.$GLOBALS['egw_info']['user']['account_id'];
|
|
|
|
|
2010-09-15 11:10:12 +02:00
|
|
|
if ($GLOBALS['egw_info']['user']['account_id'] && class_exists('common',false))
|
|
|
|
{
|
2011-02-28 22:10:16 +01:00
|
|
|
$msg .= ' ('.common::grab_owner_name($GLOBALS['egw_info']['user']['account_id']).')';
|
2010-09-15 11:10:12 +02:00
|
|
|
}
|
|
|
|
if (!$isSent)
|
|
|
|
{
|
|
|
|
$this->SetError(''); // queries error from (private) smtp and stores it in $this->ErrorInfo
|
|
|
|
$msg .= $GLOBALS['egw_info']['server']['log_mail'] !== true ? "\n" : ': ';
|
|
|
|
$msg .= 'ERROR '.str_replace(array('Language string failed to load: smtp_error',"\n","\r"),'',
|
|
|
|
strip_tags($this->ErrorInfo));
|
|
|
|
}
|
2011-02-28 22:10:16 +01:00
|
|
|
$msg .= " cc=$cc, bcc=$bcc";
|
2010-09-15 11:10:12 +02:00
|
|
|
if ($GLOBALS['egw_info']['server']['log_mail'] !== true) $msg .= "\n\n";
|
|
|
|
|
|
|
|
error_log($msg,$GLOBALS['egw_info']['server']['log_mail'] === true ? 0 : 3,
|
|
|
|
$GLOBALS['egw_info']['server']['log_mail']);
|
|
|
|
}
|
|
|
|
// calling the orginal callback of phpMailer
|
|
|
|
parent::doCallback($isSent,$to,$cc,$bcc,$subject,$body);
|
|
|
|
}
|
2011-02-28 22:10:16 +01:00
|
|
|
|
|
|
|
private $addresses = array();
|
|
|
|
|
2011-07-04 15:14:45 +02:00
|
|
|
/**
|
|
|
|
* Initiates a connection to an SMTP server.
|
|
|
|
* Returns false if the operation failed.
|
2011-07-04 15:23:55 +02:00
|
|
|
*
|
2012-08-08 12:01:01 +02:00
|
|
|
* Overwriting this method from phpmailer, to make sure we set SMTPSecure to ssl or tls if the standardports for ssl or tls
|
2011-07-04 15:23:55 +02:00
|
|
|
* are configured for the given profile
|
|
|
|
*
|
2011-07-04 15:14:45 +02:00
|
|
|
* @uses SMTP
|
|
|
|
* @access public
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-08-08 12:01:01 +02:00
|
|
|
public function SmtpConnect()
|
2011-07-04 15:14:45 +02:00
|
|
|
{
|
|
|
|
$port = $this->Port;
|
|
|
|
$hosts = explode(';',$this->Host);
|
|
|
|
foreach ($hosts as $k => &$host)
|
|
|
|
{
|
2011-07-21 14:11:17 +02:00
|
|
|
$host = trim($host); // make sure there is no whitespace leading or trailling the host string
|
2012-08-08 12:01:01 +02:00
|
|
|
if (in_array($port,array(465,587)) && strpos($host,'://')===false)
|
2011-07-04 15:14:45 +02:00
|
|
|
{
|
|
|
|
//$host = ($port==587?'tls://':'ssl://').trim($host);
|
|
|
|
$this->SMTPSecure = ($port==587?'tls':'ssl');
|
|
|
|
}
|
|
|
|
//error_log(__METHOD__.__LINE__.' Smtp Host:'.$host.' SmtpSecure:'.($this->SMTPSecure?$this->SMTPSecure:'no'));
|
|
|
|
}
|
|
|
|
return parent::SmtpConnect();
|
|
|
|
}
|
|
|
|
|
2011-02-28 22:10:16 +01:00
|
|
|
/**
|
|
|
|
* Sends mail via SMTP using PhpSMTP
|
|
|
|
*
|
|
|
|
* Overwriting this method from phpmailer, to allow apps to intercept it
|
|
|
|
* via "send_mail" hook, eg. to log or authorize sending of mail.
|
|
|
|
* Hooks can throw phpmailerException($message, phpMailer::STOP_CRITICAL),
|
|
|
|
* to stop sending the mail out like an SMTP error.
|
|
|
|
*
|
|
|
|
* @param string $header The message headers
|
|
|
|
* @param string $body The message body
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function SmtpSend($header, $body)
|
|
|
|
{
|
2012-08-08 12:01:01 +02:00
|
|
|
$mail_id = $GLOBALS['egw']->hooks->process(array(
|
2011-02-28 22:10:16 +01:00
|
|
|
'location' => 'send_mail',
|
|
|
|
'subject' => $this->Subject,
|
|
|
|
'from' => $this->Sender ? $this->Sender : $this->From,
|
|
|
|
'to' => $this->addresses['To'],
|
|
|
|
'cc' => $this->addresses['Cc'],
|
|
|
|
'bcc' => $this->addresses['Bcc'],
|
|
|
|
'body_sha1' => sha1($body),
|
|
|
|
'message_id' => preg_match('/^Message-ID: (.*)$/m', $header,$matches) ? $matches[1] : null,
|
|
|
|
), array(), true); // true = call all apps
|
|
|
|
|
|
|
|
$this->addresses = array(); // reset addresses for next mail
|
|
|
|
|
2012-08-08 12:01:01 +02:00
|
|
|
try {
|
|
|
|
// calling the overwritten method
|
|
|
|
return parent::SmtpSend($header, $body);
|
|
|
|
}
|
|
|
|
catch (phpmailerException $e) {
|
|
|
|
// in case of errors/exceptions call hook again with previous returned mail_id and error-message to log
|
|
|
|
$GLOBALS['egw']->hooks->process(array(
|
|
|
|
'location' => 'send_mail',
|
|
|
|
'subject' => $this->Subject,
|
|
|
|
'from' => $this->Sender ? $this->Sender : $this->From,
|
|
|
|
'to' => $this->addresses['To'],
|
|
|
|
'cc' => $this->addresses['Cc'],
|
|
|
|
'bcc' => $this->addresses['Bcc'],
|
|
|
|
'body_sha1' => sha1($body),
|
|
|
|
'message_id' => preg_match('/^Message-ID: (.*)$/m', $header,$matches) ? $matches[1] : null,
|
|
|
|
'mail_id' => $mail_id,
|
|
|
|
'error' => $e->getMessage(),
|
|
|
|
), array(), true); // true = call all apps
|
|
|
|
// re-throw exception
|
|
|
|
throw $e;
|
|
|
|
}
|
2011-02-28 22:10:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates recipient headers.
|
|
|
|
*
|
|
|
|
* Overwritten to get To, Cc and Bcc addresses, which are private in phpMailer
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function AddrAppend($type, $addr)
|
|
|
|
{
|
|
|
|
foreach($addr as $data)
|
|
|
|
{
|
2011-02-28 22:40:39 +01:00
|
|
|
$this->addresses[$type][] = $data[0];
|
2011-02-28 22:10:16 +01:00
|
|
|
}
|
|
|
|
return parent::AddrAppend($type, $addr);
|
|
|
|
}
|
2011-02-28 22:40:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a "Bcc" address.
|
|
|
|
*
|
|
|
|
* Reimplemented as AddrAppend() for Bcc get's NOT called for SMTP!
|
|
|
|
*
|
|
|
|
* @param string $address
|
|
|
|
* @param string $name
|
|
|
|
* @return boolean true on success, false if address already used
|
|
|
|
*/
|
|
|
|
public function AddBCC($address, $name = '')
|
|
|
|
{
|
|
|
|
$this->AddrAppend('Bcc', array(array($address,$name)));
|
2011-03-09 12:30:14 +01:00
|
|
|
|
|
|
|
return parent::AddBCC($address, $name);
|
2011-02-28 22:40:39 +01:00
|
|
|
}
|
2010-09-15 11:10:12 +02:00
|
|
|
}
|