mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
29 lines
541 B
PHP
29 lines
541 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Stores a queued email to be sent at the given time
|
||
|
*/
|
||
|
class QueuedEmail extends DataObject {
|
||
|
|
||
|
static $db = array(
|
||
|
'Send' => 'Datetime',
|
||
|
'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();
|
||
|
}
|
||
|
}
|
||
|
?>
|