1
0
Fork 0
mirror of synced 2024-07-05 06:31:08 +12:00

Fix email-base.tpl path in certificates worker

This commit is contained in:
Steven 2023-04-06 13:48:52 -07:00 committed by GitHub
parent 9e11e00c6d
commit 577ba9b0ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -383,7 +383,7 @@ class CertificatesV1 extends Worker
$locale->setDefault('en');
}
$body = Template::fromFile(__DIR__ . '/../../config/locale/templates/email-base.tpl');
$body = Template::fromFile(__DIR__ . '/../config/locale/templates/email-base.tpl');
$subject = \sprintf($locale->getText("emails.certificate.subject"), $domain);
$body->setParam('{{domain}}', $domain);