Don't add a dot after the url in forgot password email
This commit is contained in:
parent
2f3d0f2639
commit
37ddeba57f
|
@ -75,7 +75,7 @@ class Emailer {
|
||||||
addForgetPasswordEmailJob (to: string, resetPasswordUrl: string) {
|
addForgetPasswordEmailJob (to: string, resetPasswordUrl: string) {
|
||||||
const text = `Hi dear user,\n\n` +
|
const text = `Hi dear user,\n\n` +
|
||||||
`It seems you forgot your password on ${CONFIG.WEBSERVER.HOST}! ` +
|
`It seems you forgot your password on ${CONFIG.WEBSERVER.HOST}! ` +
|
||||||
`Please follow this link to reset it: ${resetPasswordUrl}.\n\n` +
|
`Please follow this link to reset it: ${resetPasswordUrl}\n\n` +
|
||||||
`If you are not the person who initiated this request, please ignore this email.\n\n` +
|
`If you are not the person who initiated this request, please ignore this email.\n\n` +
|
||||||
`Cheers,\n` +
|
`Cheers,\n` +
|
||||||
`PeerTube.`
|
`PeerTube.`
|
||||||
|
|
Loading…
Reference in New Issue