mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e3bf1384e7
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@99845 467b73ca-7a2a-4603-9d3b-597d59a354a9
68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Sends an error message to an email whenever an error occurs
|
|
* in sapphire.
|
|
*
|
|
* @see SS_Log for more information on using writers.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage dev
|
|
*/
|
|
|
|
require_once 'Zend/Log/Writer/Abstract.php';
|
|
|
|
class SS_LogEmailWriter extends Zend_Log_Writer_Abstract {
|
|
|
|
/**
|
|
* @var $send_from Email address to send log information from
|
|
*/
|
|
protected static $send_from = 'errors@silverstripe.com';
|
|
|
|
protected $emailAddress;
|
|
|
|
protected $customSmtpServer;
|
|
|
|
public function __construct($emailAddress, $customSmtpServer = false) {
|
|
$this->emailAddress = $emailAddress;
|
|
$this->customSmtpServer = $customSmtpServer;
|
|
}
|
|
|
|
public static function set_send_from($address) {
|
|
self::$send_from = $address;
|
|
}
|
|
|
|
public static function get_send_from() {
|
|
return self::$send_from;
|
|
}
|
|
|
|
/**
|
|
* Send an email to the email address set in
|
|
* this writer.
|
|
*/
|
|
public function _write($event) {
|
|
// If no formatter set up, use the default
|
|
if(!$this->_formatter) {
|
|
$formatter = new SS_LogErrorEmailFormatter();
|
|
$this->setFormatter($formatter);
|
|
}
|
|
|
|
$formattedData = $this->_formatter->format($event);
|
|
$subject = $formattedData['subject'];
|
|
$data = $formattedData['data'];
|
|
|
|
$originalSMTP = ini_get('SMTP');
|
|
// override the SMTP server with a custom one if required
|
|
if($this->customSmtpServer) ini_set('SMTP', $this->customSmtpServer);
|
|
|
|
mail(
|
|
$this->emailAddress,
|
|
$subject,
|
|
$data,
|
|
"Content-type: text/html\nFrom: " . self::$send_from
|
|
);
|
|
|
|
// reset the SMTP server to the original
|
|
if($this->customSmtpServer) ini_set('SMTP', $originalSMTP);
|
|
}
|
|
|
|
} |