Created
October 23, 2017 03:48
-
-
Save gustavonecore/c2e5c8f1c49f9ccf7e3115d280609ac5 to your computer and use it in GitHub Desktop.
Codeigniter job-server - Schedules controller example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
foreach ($receivers as $receiver) | |
{ | |
$this->model->create('jobs', [ | |
'name' => 'sendEmail', | |
'payload' => json_encode([ | |
'subject' => 'My beautiful subject', | |
'type' => 'html', | |
'message' => 'This is an email!', | |
'to' => $receiver, | |
]), | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment