Now base64-encoding the selfservice tokens👀
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
ref #11
This commit is contained in:
parent
ab0e41f73b
commit
1f581650c5
@ -126,6 +126,7 @@ export class Mailer {
|
|||||||
*/
|
*/
|
||||||
public async sendWelcomeMail(to_address: string, token: string, locale: string = "en") {
|
public async sendWelcomeMail(to_address: string, token: string, locale: string = "en") {
|
||||||
await i18next.changeLanguage(locale);
|
await i18next.changeLanguage(locale);
|
||||||
|
token = Buffer.from(token).toString("base64");
|
||||||
|
|
||||||
const replacements = {
|
const replacements = {
|
||||||
recipient_mail: to_address,
|
recipient_mail: to_address,
|
||||||
@ -159,6 +160,7 @@ export class Mailer {
|
|||||||
*/
|
*/
|
||||||
public async sendSelfserviceForgottenMail(to_address: string, token: string, locale: string = "en") {
|
public async sendSelfserviceForgottenMail(to_address: string, token: string, locale: string = "en") {
|
||||||
await i18next.changeLanguage(locale);
|
await i18next.changeLanguage(locale);
|
||||||
|
token = Buffer.from(token).toString("base64");
|
||||||
|
|
||||||
const replacements = {
|
const replacements = {
|
||||||
recipient_mail: to_address,
|
recipient_mail: to_address,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user