Fix verify mail

This commit is contained in:
2023-09-21 14:38:00 +02:00
parent 8155549031
commit 5b0c1f8992

View File

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