silverstripe-framework/email/QueuedEmail.php
Ingo Schommer 9b1db223ce API CHANGE Removed deprecated Datetime class, use SSDatetime instead (was conflicting with PHP 5.2 integrated classes)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64394 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-10-16 08:59:40 +00:00

31 lines
585 B
PHP

<?php
/**
* Stores a queued email to be sent at the given time
* @package sapphire
* @subpackage email
*/
class QueuedEmail extends DataObject {
static $db = array(
'Send' => 'SSDatetime',
'Subject' => 'Varchar',
'From' => 'Varchar',
'Content' => 'Text'
);
static $has_one = array(
'To' => 'Member'
);
// overwrite this method to provide a check whether or not to send the email
function canSendEmail() {
return true;
}
function send() {
$email = new Email( $this->From, $this->To()->Email, $this->Subject, $this->Content );
$email->send();
}
}
?>