mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
98dda12a9d
API CHANGE: Added no-arg option to increase_memory_limit_to() (from r80241) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@88176 467b73ca-7a2a-4603-9d3b-597d59a354a9
32 lines
528 B
PHP
32 lines
528 B
PHP
<?php
|
|
/**
|
|
* Daily task to send queued email.
|
|
* @package sapphire
|
|
* @subpackage email
|
|
*/
|
|
class QueuedEmailDispatchTask extends DailyTask {
|
|
|
|
public function process() {
|
|
increase_time_limit_to();
|
|
|
|
echo "SENDING QUEUED EMAILS\n";
|
|
|
|
$queued = DataObject::get('QueuedEmail', "`Send` < NOW()");
|
|
|
|
if( !$queued )
|
|
return;
|
|
|
|
foreach( $queued as $data ) {
|
|
|
|
if( !$data->canSendEmail() )
|
|
continue;
|
|
|
|
$data->send();
|
|
echo 'Sent to: ' . $data->To()->Email . "\n";
|
|
|
|
$data->delete();
|
|
}
|
|
}
|
|
|
|
}
|
|
?>
|