24 $arguments = array_map(
function ($value) {
25 return $value->getValue();
28 $DIC->logger()->mail()->info(
'Mail delivery background task executed');
30 $DIC->logger()->mail()->debug(sprintf(
32 json_encode(array_slice($arguments, 0, 5), JSON_PRETTY_PRINT)
35 $mail =
new ilMail((
int) $input[0]->getValue());
36 $mail->setSaveInSentbox((
bool) $input[8]->getValue());
38 ->withContextId((
string) $input[9]->getValue())
39 ->withContextParameters((array) unserialize($input[10]->getValue()));
42 (
string) $input[1]->getValue(),
43 (
string) $input[2]->getValue(),
44 (
string) $input[3]->getValue(),
45 (
string) $input[4]->getValue(),
46 (
string) $input[5]->getValue(),
47 (array) unserialize($input[6]->getValue()),
48 (
bool) $input[7]->getValue()
51 $DIC->logger()->mail()->info(
'Mail delivery background task finished');
getInputTypes()
Type[] A list of types that are taken as input.
getOutputType()
Type A single type.
isStateless()
bool returns true iff the job's output ONLY depends on the input. Stateless task results may be cache...
getExpectedTimeOfTaskInSeconds()
int the amount of seconds this task usually taskes. If your task-duration scales with the the amount ...
run(array $input, Observer $observer)