silverstripe-framework/email/Email.php

780 lines
21 KiB
PHP
Raw Normal View History

<?php
/**
* @package framework
* @subpackage email
*/
if(isset($_SERVER['SERVER_NAME'])) {
/**
* X-Mailer header value on emails sent
*/
define('X_MAILER', 'SilverStripe Mailer - version 2006.06.21 (Sent from "'.$_SERVER['SERVER_NAME'].'")');
} else {
/**
* @ignore
*/
define('X_MAILER', 'SilverStripe Mailer - version 2006.06.21');
}
/**
* Class to support sending emails.
* @package framework
* @subpackage email
*/
class Email extends ViewableData {
2014-08-15 08:53:05 +02:00
/**
* @var string $from Email-Address
*/
protected $from;
2014-08-15 08:53:05 +02:00
/**
* @var string $to Email-Address. Use comma-separation to pass multiple email-addresses.
*/
protected $to;
2014-08-15 08:53:05 +02:00
/**
* @var string $subject Subject of the email
*/
protected $subject;
2014-08-15 08:53:05 +02:00
/**
* Passed straight into {@link $ss_template} as $Body variable.
*
* @var string $body HTML content of the email.
*/
protected $body;
2014-08-15 08:53:05 +02:00
/**
* If not set, defaults to converting the HTML-body with {@link Convert::xml2raw()}.
*
* @var string $plaintext_body Optional string for plaintext emails.
*/
protected $plaintext_body;
2014-08-15 08:53:05 +02:00
/**
* @var string $cc
*/
protected $cc;
2014-08-15 08:53:05 +02:00
/**
* @var string $bcc
*/
protected $bcc;
2014-08-15 08:53:05 +02:00
/**
* @var array $customHeaders A map of header-name -> header-value
*/
protected $customHeaders = array();
/**
* @var array $attachments Internal, use {@link attachFileFromString()} or {@link attachFile()}
*/
protected $attachments = array();
2014-08-15 08:53:05 +02:00
/**
* @var boolean $parseVariables_done
*/
protected $parseVariables_done = false;
2014-08-15 08:53:05 +02:00
/**
* @var string $ss_template The name of the used template (without *.ss extension)
*/
protected $ss_template = 'GenericEmail';
2014-08-15 08:53:05 +02:00
/**
* Used in the same way than {@link ViewableData->customize()}.
*
* @var ViewableData_Customised $template_data Additional data available in a template.
*/
protected $template_data;
2014-08-15 08:53:05 +02:00
/**
* This will be set in the config on a site-by-site basis
*
* @config
2014-08-15 08:53:05 +02:00
* @var string The default administrator email address.
*/
private static $admin_email = '';
/**
* Send every email generated by the Email class to the given address.
2014-08-15 08:53:05 +02:00
*
* It will also add " [addressed to (email), cc to (email), bcc to (email)]" to the end of the subject line
2014-08-15 08:53:05 +02:00
*
* To set this, set Email.send_all_emails_to in your yml config file.
* It can also be set in _ss_environment.php with SS_SEND_ALL_EMAILS_TO.
*
* @config
* @var string $send_all_emails_to Email-Address
*/
private static $send_all_emails_to;
/**
* Send every email generated by the Email class *from* the given address.
* It will also add " [, from to (email)]" to the end of the subject line
2014-08-15 08:53:05 +02:00
*
* To set this, set Email.send_all_emails_from in your yml config file.
* It can also be set in _ss_environment.php with SS_SEND_ALL_EMAILS_FROM.
*
* @config
* @var string $send_all_emails_from Email-Address
*/
private static $send_all_emails_from;
2014-08-15 08:53:05 +02:00
/**
* @config
* @var string BCC every email generated by the Email class to the given address.
*/
private static $bcc_all_emails_to;
2014-08-15 08:53:05 +02:00
/**
* @config
* @var string CC every email generated by the Email class to the given address.
*/
private static $cc_all_emails_to;
2014-08-15 08:53:05 +02:00
/**
* Create a new email.
*
* @param string|null $from
* @param string|null $to
* @param string|null $subject
* @param string|null $body
* @param string|null $bounceHandlerURL
* @param string|null $cc
* @param string|null $bcc
*/
public function __construct($from = null, $to = null, $subject = null, $body = null, $bounceHandlerURL = null,
$cc = null, $bcc = null) {
if($from !== null) $this->from = $from;
if($to !== null) $this->to = $to;
if($subject !== null) $this->subject = $subject;
if($body !== null) $this->body = $body;
if($cc !== null) $this->cc = $cc;
if($bcc !== null) $this->bcc = $bcc;
2014-08-15 08:53:05 +02:00
if($bounceHandlerURL !== null) {
Deprecation::notice('4.0', 'Use "emailbouncehandler" module');
}
parent::__construct();
}
2014-08-15 08:53:05 +02:00
/**
* Get the mailer.
*
* @return Mailer
*/
public static function mailer() {
return Injector::inst()->get('Mailer');
}
/**
* @deprecated since version 4.0
*/
public static function set_mailer(Mailer $mailer) {
Deprecation::notice('4.0', 'Use Injector to override the Mailer service');
Injector::inst()->registerService($mailer, 'Mailer');
}
/**
* Attach a file based on provided raw data.
*
* @param string $data The raw file data (not encoded).
* @param string $attachedFilename Name of the file that should appear once it's sent as a separate attachment.
* @param string|null $mimeType MIME type to use when attaching file. If not provided, will attempt to infer via HTTP::get_mime_type().
* @return $this
*/
public function attachFileFromString($data, $attachedFilename, $mimeType = null) {
$this->attachments[] = array(
'contents' => $data,
'filename' => $attachedFilename,
'mimetype' => $mimeType,
);
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @deprecated since version 4.0
*/
public function setBounceHandlerURL($bounceHandlerURL) {
Deprecation::notice('4.0', 'Use "emailbouncehandler" module');
}
2014-08-15 08:53:05 +02:00
/**
* Attach the specified file to this email message.
*
* @param string $filename Relative or full path to file you wish to attach to this email message.
* @param string|null $attachedFilename Name of the file that should appear once it's sent as a separate attachment.
* @param string|null $mimeType MIME type to use when attaching file. If not provided, will attempt to infer via HTTP::get_mime_type().
* @return $this
*/
public function attachFile($filename, $attachedFilename = null, $mimeType = null) {
if(!$attachedFilename) $attachedFilename = basename($filename);
$absoluteFileName = Director::getAbsFile($filename);
if(file_exists($absoluteFileName)) {
$this->attachFileFromString(file_get_contents($absoluteFileName), $attachedFilename, $mimeType);
} else {
user_error("Could not attach '$absoluteFileName' to email. File does not exist.", E_USER_NOTICE);
}
2013-10-21 10:58:45 +02:00
return $this;
}
/**
* @return string|null
*/
public function Subject() {
return $this->subject;
}
2014-08-15 08:53:05 +02:00
/**
* @return string|null
*/
public function Body() {
return $this->body;
}
2014-08-15 08:53:05 +02:00
/**
* @return string|null
*/
public function To() {
return $this->to;
}
2014-08-15 08:53:05 +02:00
/**
* @return string|null
*/
public function From() {
return $this->from;
}
2014-08-15 08:53:05 +02:00
/**
* @return string|null
*/
public function Cc() {
return $this->cc;
}
2014-08-15 08:53:05 +02:00
/**
* @return string|null
*/
public function Bcc() {
return $this->bcc;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setSubject($val) {
2014-08-15 08:53:05 +02:00
$this->subject = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setBody($val) {
2014-08-15 08:53:05 +02:00
$this->body = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setTo($val) {
2014-08-15 08:53:05 +02:00
$this->to = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setFrom($val) {
2014-08-15 08:53:05 +02:00
$this->from = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setCc($val) {
$this->cc = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $val
* @return $this
*/
public function setBcc($val) {
$this->bcc = $val;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* Set the "Reply-To" header with an email address.
*
* @param string $val
* @return $this
*/
public function setReplyTo($val) {
$this->addCustomHeader('Reply-To', $val);
return $this;
}
/**
* @param string $email
* @return $this
* @deprecated 4.0 Use the "setReplyTo" method instead
*/
public function replyTo($email) {
Deprecation::notice('4.0', 'Use the "setReplyTo" method instead');
$this->setReplyTo($email);
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* Add a custom header to this email message. Useful for implementing all those cool features that we didn't think of.
*
* IMPORTANT: If the specified header already exists, the provided value will be appended!
*
* @todo Should there be an option to replace instead of append? Or maybe a new method ->setCustomHeader()?
2014-08-15 08:53:05 +02:00
*
* @param string $headerName
* @param string $headerValue
* @return $this
*/
public function addCustomHeader($headerName, $headerValue) {
if ($headerName == 'Cc') {
$this->cc = $headerValue;
} elseif($headerName == 'Bcc') {
$this->bcc = $headerValue;
} else {
// Append value instead of replacing.
if(isset($this->customHeaders[$headerName])) {
$this->customHeaders[$headerName] .= ", " . $headerValue;
} else {
$this->customHeaders[$headerName] = $headerValue;
}
}
2013-10-21 10:58:45 +02:00
return $this;
}
/**
* @return string
*/
public function BaseURL() {
return Director::absoluteBaseURL();
}
2014-08-15 08:53:05 +02:00
/**
* Get an HTML string for debugging purposes.
*
* @return string
*/
public function debug() {
$this->parseVariables();
2014-08-15 08:53:05 +02:00
return "<h2>Email template $this->class</h2>\n" .
"<p><b>From:</b> $this->from\n" .
2014-08-15 08:53:05 +02:00
"<b>To:</b> $this->to\n" .
"<b>Cc:</b> $this->cc\n" .
"<b>Bcc:</b> $this->bcc\n" .
"<b>Subject:</b> $this->subject</p>" .
$this->body;
}
/**
* Set template name (without *.ss extension).
2014-08-15 08:53:05 +02:00
*
* @param string $template
* @return $this
*/
public function setTemplate($template) {
$this->ss_template = $template;
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @return string
*/
public function getTemplate() {
return $this->ss_template;
}
/**
* @return $this
*/
protected function templateData() {
if($this->template_data) {
return $this->template_data->customise(array(
"To" => $this->to,
"Cc" => $this->cc,
"Bcc" => $this->bcc,
"From" => $this->from,
"Subject" => $this->subject,
"Body" => $this->body,
"BaseURL" => $this->BaseURL(),
"IsEmail" => true,
));
} else {
return $this;
}
}
2014-08-15 08:53:05 +02:00
/**
* Used by {@link SSViewer} templates to detect if we're rendering an email template rather than a page template
*/
public function IsEmail() {
return true;
}
2014-08-15 08:53:05 +02:00
/**
* Populate this email template with values. This may be called many times.
*
* @param array|ViewableData $data
* @return $this
*/
public function populateTemplate($data) {
if($this->template_data) {
2014-08-15 08:53:05 +02:00
$this->template_data = $this->template_data->customise($data);
} else {
if(is_array($data)) $data = new ArrayData($data);
$this->template_data = $this->customise($data);
}
$this->parseVariables_done = false;
2014-08-15 08:53:05 +02:00
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* Load all the template variables into the internal variables, including
* the template into body. Called before send() or debugSend()
* $isPlain=true will cause the template to be ignored, otherwise the GenericEmail template will be used
2014-08-15 08:53:05 +02:00
* and it won't be plain email :)
*
* @param bool $isPlain
* @return $this
*/
protected function parseVariables($isPlain = false) {
$origState = Config::inst()->get('SSViewer', 'source_file_comments');
Config::inst()->update('SSViewer', 'source_file_comments', false);
if(!$this->parseVariables_done) {
$this->parseVariables_done = true;
// Parse $ variables in the base parameters
$data = $this->templateData();
2014-08-15 08:53:05 +02:00
// Process a .SS template file
$fullBody = $this->body;
if($this->ss_template && !$isPlain) {
// Requery data so that updated versions of To, From, Subject, etc are included
$data = $this->templateData();
$candidateTemplates = [
$this->ss_template,
[ 'type' => 'email', $this->ss_template ]
];
$template = new SSViewer($candidateTemplates);
if($template->exists()) {
$fullBody = $template->process($data);
}
}
2014-08-15 08:53:05 +02:00
// Rewrite relative URLs
$this->body = HTTP::absoluteURLs($fullBody);
}
Config::inst()->update('SSViewer', 'source_file_comments', $origState);
2013-10-21 10:58:45 +02:00
return $this;
}
2014-08-15 08:53:05 +02:00
/**
* @param string $address
* @return bool
* @deprecated 4.0 Use the "is_valid_address" method instead
*/
public static function validEmailAddress($address) {
Deprecation::notice('4.0', 'Use the "is_valid_address" method instead');
return static::is_valid_address($address);
}
2012-02-27 22:14:02 +01:00
/**
* Send the email in plaintext.
2014-08-15 08:53:05 +02:00
*
* @see send() for sending emails with HTML content.
* @uses Mailer->sendPlain()
2014-08-15 08:53:05 +02:00
*
* @param string $messageID Optional message ID so the message can be identified in bounces etc.
* @return mixed Success of the sending operation from an MTA perspective. Doesn't actually give any indication if
* the mail has been delivered to the recipient properly). See Mailer->sendPlain() for return type details.
*/
public function sendPlain($messageID = null) {
Requirements::clear();
2014-08-15 08:53:05 +02:00
$this->parseVariables(true);
2014-08-15 08:53:05 +02:00
if(empty($this->from)) $this->from = Email::config()->admin_email;
2014-08-15 08:53:05 +02:00
$headers = $this->customHeaders;
2014-08-15 08:53:05 +02:00
if($messageID) $headers['X-SilverStripeMessageID'] = project() . '.' . $messageID;
2014-08-15 08:53:05 +02:00
if(project()) $headers['X-SilverStripeSite'] = project();
$to = $this->to;
$from = $this->from;
$subject = $this->subject;
if($sendAllTo = $this->config()->send_all_emails_to) {
$subject .= " [addressed to $to";
$to = $sendAllTo;
if($this->cc) $subject .= ", cc to $this->cc";
if($this->bcc) $subject .= ", bcc to $this->bcc";
$subject .= ']';
unset($headers['Cc']);
unset($headers['Bcc']);
} else {
if($this->cc) $headers['Cc'] = $this->cc;
if($this->bcc) $headers['Bcc'] = $this->bcc;
}
2014-08-15 08:53:05 +02:00
if($ccAllTo = $this->config()->cc_all_emails_to) {
if(!empty($headers['Cc']) && trim($headers['Cc'])) {
$headers['Cc'] .= ', ' . $ccAllTo;
} else {
$headers['Cc'] = $ccAllTo;
}
}
if($bccAllTo = $this->config()->bcc_all_emails_to) {
if(!empty($headers['Bcc']) && trim($headers['Bcc'])) {
$headers['Bcc'] .= ', ' . $bccAllTo;
} else {
$headers['Bcc'] = $bccAllTo;
}
}
if($sendAllfrom = $this->config()->send_all_emails_from) {
if($from) $subject .= " [from $from]";
$from = $sendAllfrom;
}
Requirements::restore();
2014-08-15 08:53:05 +02:00
return self::mailer()->sendPlain($to, $from, $subject, $this->body, $this->attachments, $headers);
}
2014-08-15 08:53:05 +02:00
/**
* Send an email with HTML content.
*
* @see sendPlain() for sending plaintext emails only.
* @uses Mailer->sendHTML()
2014-08-15 08:53:05 +02:00
*
* @param string $messageID Optional message ID so the message can be identified in bounces etc.
* @return mixed Success of the sending operation from an MTA perspective. Doesn't actually give any indication if
* the mail has been delivered to the recipient properly). See Mailer->sendPlain() for return type details.
*/
public function send($messageID = null) {
Requirements::clear();
2014-08-15 08:53:05 +02:00
$this->parseVariables();
if(empty($this->from)) $this->from = Email::config()->admin_email;
$headers = $this->customHeaders;
if($messageID) $headers['X-SilverStripeMessageID'] = project() . '.' . $messageID;
if(project()) $headers['X-SilverStripeSite'] = project();
$to = $this->to;
$from = $this->from;
$subject = $this->subject;
if($sendAllTo = $this->config()->send_all_emails_to) {
$subject .= " [addressed to $to";
$to = $sendAllTo;
if($this->cc) $subject .= ", cc to $this->cc";
if($this->bcc) $subject .= ", bcc to $this->bcc";
$subject .= ']';
unset($headers['Cc']);
unset($headers['Bcc']);
} else {
if($this->cc) $headers['Cc'] = $this->cc;
if($this->bcc) $headers['Bcc'] = $this->bcc;
}
2014-08-15 08:53:05 +02:00
if($ccAllTo = $this->config()->cc_all_emails_to) {
if(!empty($headers['Cc']) && trim($headers['Cc'])) {
$headers['Cc'] .= ', ' . $ccAllTo;
} else {
$headers['Cc'] = $ccAllTo;
}
}
if($bccAllTo = $this->config()->bcc_all_emails_to) {
if(!empty($headers['Bcc']) && trim($headers['Bcc'])) {
$headers['Bcc'] .= ', ' . $bccAllTo;
} else {
$headers['Bcc'] = $bccAllTo;
}
}
if($sendAllfrom = $this->config()->send_all_emails_from) {
if($from) $subject .= " [from $from]";
$from = $sendAllfrom;
}
Requirements::restore();
2014-08-15 08:53:05 +02:00
return self::mailer()->sendHTML($to, $from, $subject, $this->body, $this->attachments, $headers,
$this->plaintext_body);
}
/**
* Used as a default sender address in the {@link Email} class
* unless overwritten. Also shown to users on live environments
* as a contact address on system error pages.
2014-08-15 08:53:05 +02:00
*
* Used by {@link Email->send()}, {@link Email->sendPlain()}, {@link Debug->friendlyError()}.
*
* @deprecated 4.0 Use the "Email.admin_email" config setting instead
* @param string $newEmail
*/
public static function setAdminEmail($newEmail) {
Deprecation::notice('4.0', 'Use the "Email.admin_email" config setting instead');
Config::inst()->update('Email', 'admin_email', $newEmail);
}
2014-08-15 08:53:05 +02:00
/**
* @deprecated 4.0 Use the "Email.admin_email" config setting instead
* @return string
*/
public static function getAdminEmail() {
Deprecation::notice('4.0', 'Use the "Email.admin_email" config setting instead');
return Config::inst()->get('Email', 'admin_email');
}
/**
* Send every email generated by the Email class to the given address.
* It will also add " [addressed to (email), cc to (email), bcc to (email)]" to the end of the subject line
* This can be used when testing, by putting a command like this in your _config.php file
2014-08-15 08:53:05 +02:00
*
* if(!Director::isLive()) Email::send_all_emails_to("someone@example.com")
*
* @deprecated 4.0 Use the "Email.send_all_emails_to" config setting instead
*/
public static function send_all_emails_to($emailAddress) {
Deprecation::notice('4.0', 'Use the "Email.send_all_emails_to" config setting instead');
Config::inst()->update('Email', 'send_all_emails_to', $emailAddress);
}
/**
* CC every email generated by the Email class to the given address.
2014-08-15 08:53:05 +02:00
* It won't affect the original delivery in the same way that send_all_emails_to does. It just adds a CC header
* with the given email address. Note that you can only call this once - subsequent calls will overwrite the
* configuration variable.
*
* This can be used when you have a system that relies heavily on email and you want someone to be checking all
* correspondence.
2014-08-15 08:53:05 +02:00
*
* if(Director::isLive()) Email::cc_all_emails_to("supportperson@example.com")
*
* @deprecated 4.0 Use the "Email.cc_all_emails_to" config setting instead
*/
public static function cc_all_emails_to($emailAddress) {
Deprecation::notice('4.0', 'Use the "Email.cc_all_emails_to" config setting instead');
Config::inst()->update('Email', 'cc_all_emails_to', $emailAddress);
}
/**
* BCC every email generated by the Email class to the given address.
2014-08-15 08:53:05 +02:00
* It won't affect the original delivery in the same way that send_all_emails_to does. It just adds a BCC header
* with the given email address. Note that you can only call this once - subsequent calls will overwrite the
* configuration variable.
*
* This can be used when you have a system that relies heavily on email and you want someone to be checking all
* correspondence.
2014-08-15 08:53:05 +02:00
*
* if(Director::isLive()) Email::cc_all_emails_to("supportperson@example.com")
*
* @deprecated 4.0 Use the "Email.bcc_all_emails_to" config setting instead
*/
public static function bcc_all_emails_to($emailAddress) {
Deprecation::notice('4.0', 'Use the "Email.bcc_all_emails_to" config setting instead');
Config::inst()->update('Email', 'bcc_all_emails_to', $emailAddress);
}
2014-08-15 08:53:05 +02:00
/**
* Validates the email address to get as close to RFC 822 compliant as possible.
2014-08-15 08:53:05 +02:00
*
* @param string $email
* @return bool
2014-08-15 08:53:05 +02:00
*
* @copyright Cal Henderson <cal@iamcal.com>
* This code is licensed under a Creative Commons Attribution-ShareAlike 2.5 License
* http://creativecommons.org/licenses/by-sa/2.5/
*/
public static function is_valid_address($email){
$qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
$dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]';
$atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c'.
'\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+';
$quoted_pair = '\\x5c[\\x00-\\x7f]';
$domain_literal = "\\x5b($dtext|$quoted_pair)*\\x5d";
$quoted_string = "\\x22($qtext|$quoted_pair)*\\x22";
$domain_ref = $atom;
$sub_domain = "($domain_ref|$domain_literal)";
$word = "($atom|$quoted_string)";
$domain = "$sub_domain(\\x2e$sub_domain)*";
$local_part = "$word(\\x2e$word)*";
$addr_spec = "$local_part\\x40$domain";
return preg_match("!^$addr_spec$!", $email) === 1;
}
/**
* Encode an email-address to help protect it from spam bots. At the moment only simple string substitutions, which
* are not 100% safe from email harvesting.
2014-08-15 08:53:05 +02:00
*
* @todo Integrate javascript-based solution
2014-08-15 08:53:05 +02:00
*
* @param string $email Email-address
* @param string $method Method for obfuscating/encoding the address
* - 'direction': Reverse the text and then use CSS to put the text direction back to normal
* - 'visible': Simple string substitution ('@' to '[at]', '.' to '[dot], '-' to [dash])
* - 'hex': Hexadecimal URL-Encoding - useful for mailto: links
* @return string
*/
public static function obfuscate($email, $method = 'visible') {
switch($method) {
case 'direction' :
Requirements::customCSS(
'span.codedirection { unicode-bidi: bidi-override; direction: rtl; }',
'codedirectionCSS'
);
return '<span class="codedirection">' . strrev($email) . '</span>';
case 'visible' :
$obfuscated = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] ');
return strtr($email, $obfuscated);
case 'hex' :
$encoded = '';
for ($x=0; $x < strlen($email); $x++) $encoded .= '&#x' . bin2hex($email{$x}).';';
return $encoded;
default:
user_error('Email::obfuscate(): Unknown obfuscation method', E_USER_NOTICE);
return $email;
}
}
}