1
0
Fork 0
mirror of synced 2024-10-01 01:37:56 +13:00

Fix swapped from/to name

This commit is contained in:
Jake Barnby 2023-08-30 20:20:20 -04:00
parent 02c16040ff
commit 7e2e7ce3cb
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -37,7 +37,7 @@ class MailsV1 extends Worker
$subject = $this->args['subject'];
$body = $this->args['body'];
$variables = $this->args['variables'];
$name = $variables['user'] ?? '';
$name = $this->args['name'];
$body = Template::fromFile(__DIR__ . '/../config/locale/templates/email-base.tpl');