Move creating the temp directory out of the emailing for loop (#238)
This commit is contained in:
parent
f1d6813889
commit
06a7595c85
1 changed files with 6 additions and 6 deletions
|
@ -154,16 +154,16 @@ class email_certificate_task extends \core\task\scheduled_task {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now, email the people we need to.
|
|
||||||
foreach ($issuedusers as $user) {
|
|
||||||
$userfullname = fullname($user);
|
|
||||||
|
|
||||||
// Create a directory to store the PDF we will be sending.
|
// Create a directory to store the PDF we will be sending.
|
||||||
$tempdir = make_temp_directory('certificate/attachment');
|
$tempdir = make_temp_directory('certificate/attachment');
|
||||||
if (!$tempdir) {
|
if (!$tempdir) {
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Now, email the people we need to.
|
||||||
|
foreach ($issuedusers as $user) {
|
||||||
|
$userfullname = fullname($user);
|
||||||
|
|
||||||
// Now, get the PDF.
|
// Now, get the PDF.
|
||||||
$template = new \stdClass();
|
$template = new \stdClass();
|
||||||
$template->id = $customcert->templateid;
|
$template->id = $customcert->templateid;
|
||||||
|
|
Loading…
Reference in a new issue