fix: email template

This commit is contained in:
GitBluub
2023-09-21 15:23:07 +02:00
parent 3860c9f72a
commit 4a4f9e2a55

View File

@@ -67,7 +67,7 @@ export class AuthService {
to: user.email,
from: 'chromacase@octohub.app',
subject: 'Password reset for Chromacase',
html: `To reset your password, please click on this <a href="{${process.env.PUBLIC_URL}/password_reset?token=${token}">link</a>.`,
html: `To reset your password, please click on this <a href="${process.env.PUBLIC_URL}/password_reset?token=${token}">link</a>.`,
});
}