Fixed wrong email field
This commit is contained in:
parent
05dfff4bb4
commit
16d9b9ff7d
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ function lostpass_post(App $a)
|
|||
->newSystemMail((!empty($user['language'])) ? DI::l10n()->withLang($user['language']) : DI::l10n())
|
||||
->withMessage(DI::l10n()->t('Password reset requested at %s', $sitename), $preamble, $body)
|
||||
->forUser($user['uid'] ?? 0)
|
||||
->withRecipient($user['to_email'])
|
||||
->withRecipient($user['email'])
|
||||
->build();
|
||||
|
||||
DI::emailer()->send($email);
|
||||
|
@ -160,7 +160,7 @@ function lostpass_generate_password($user)
|
|||
->newSystemMail((!empty($user['language'])) ? DI::l10n()->withLang($user['language']) : DI::l10n())
|
||||
->withMessage(DI::l10n()->t('Your password has been changed at %s', $sitename), $preamble, $body)
|
||||
->forUser($user['uid'] ?? 0)
|
||||
->withRecipient($user['to_email'])
|
||||
->withRecipient($user['email'])
|
||||
->build();
|
||||
DI::emailer()->send($email);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue