1
0
Fork 0
mirror of synced 2024-09-30 09:18:14 +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, 'subject' => $subject,
'hello' => $locale->getText("emails.magicSession.hello"), 'hello' => $locale->getText("emails.magicSession.hello"),
'name' => '', 'name' => '',
'body' => $locale->getText("emails.magicSession.body"), 'body' => $body,
'redirect' => $url, 'redirect' => $url,
'footer' => $locale->getText("emails.magicSession.footer"), 'footer' => $locale->getText("emails.magicSession.footer"),
'thanks' => $locale->getText("emails.magicSession.thanks"), 'thanks' => $locale->getText("emails.magicSession.thanks"),
@ -2545,7 +2545,7 @@ App::post('/v1/account/recovery')
'subject' => $subject, 'subject' => $subject,
'hello' => $locale->getText("emails.recovery.hello"), 'hello' => $locale->getText("emails.recovery.hello"),
'name' => $profile->getAttribute('name'), 'name' => $profile->getAttribute('name'),
'body' => $locale->getText("emails.recovery.body"), 'body' => $body,
'redirect' => $url, 'redirect' => $url,
'footer' => $locale->getText("emails.recovery.footer"), 'footer' => $locale->getText("emails.recovery.footer"),
'thanks' => $locale->getText("emails.recovery.thanks"), 'thanks' => $locale->getText("emails.recovery.thanks"),
@ -2766,7 +2766,7 @@ App::post('/v1/account/verification')
'subject' => $subject, 'subject' => $subject,
'hello' => $locale->getText("emails.verification.hello"), 'hello' => $locale->getText("emails.verification.hello"),
'name' => $user->getAttribute('name'), 'name' => $user->getAttribute('name'),
'body' => $locale->getText("emails.verification.body"), 'body' => $body,
'redirect' => $url, 'redirect' => $url,
'footer' => $locale->getText("emails.verification.footer"), 'footer' => $locale->getText("emails.verification.footer"),
'thanks' => $locale->getText("emails.verification.thanks"), 'thanks' => $locale->getText("emails.verification.thanks"),