1
0
Fork 0
mirror of synced 2024-09-30 01:08:13 +13:00

Update account.php

This commit is contained in:
Bradley Schofield 2023-08-28 06:14:43 +01:00
parent ee0563c46f
commit 1be5f58fd9

View file

@ -1118,7 +1118,7 @@ App::post('/v1/account/sessions/magic-url')
'subject' => $subject,
'hello' => $locale->getText("emails.magicSession.hello"),
'name' => '',
'body' => $locale->getText("emails.magicSession.body"),
'body' => $body,
'redirect' => $url,
'footer' => $locale->getText("emails.magicSession.footer"),
'thanks' => $locale->getText("emails.magicSession.thanks"),
@ -2545,7 +2545,7 @@ App::post('/v1/account/recovery')
'subject' => $subject,
'hello' => $locale->getText("emails.recovery.hello"),
'name' => $profile->getAttribute('name'),
'body' => $locale->getText("emails.recovery.body"),
'body' => $body,
'redirect' => $url,
'footer' => $locale->getText("emails.recovery.footer"),
'thanks' => $locale->getText("emails.recovery.thanks"),
@ -2766,7 +2766,7 @@ App::post('/v1/account/verification')
'subject' => $subject,
'hello' => $locale->getText("emails.verification.hello"),
'name' => $user->getAttribute('name'),
'body' => $locale->getText("emails.verification.body"),
'body' => $body,
'redirect' => $url,
'footer' => $locale->getText("emails.verification.footer"),
'thanks' => $locale->getText("emails.verification.thanks"),