Skip to content

Instantly share code, notes, and snippets.

@gustavonecore
Created October 23, 2017 03:48
Show Gist options
  • Save gustavonecore/c2e5c8f1c49f9ccf7e3115d280609ac5 to your computer and use it in GitHub Desktop.
Save gustavonecore/c2e5c8f1c49f9ccf7e3115d280609ac5 to your computer and use it in GitHub Desktop.
Codeigniter job-server - Schedules controller example
<?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