mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
remove user name from email template
This commit is contained in:
parent
8af2bb076c
commit
af140cc8b4
1 changed files with 0 additions and 3 deletions
|
|
@ -14,7 +14,6 @@ export const sendNewAccountVerificationEmail = async (user: {
|
|||
const link = `${env.client.url}/auth/confirm-email/${token}`
|
||||
// send email
|
||||
const dynamicTemplateData = {
|
||||
name: user.name,
|
||||
link,
|
||||
}
|
||||
|
||||
|
|
@ -75,7 +74,6 @@ export const sendAccountChangeEmail = async (user: {
|
|||
const link = `${env.client.url}/auth/reset-password/${token}`
|
||||
// send email
|
||||
const dynamicTemplateData = {
|
||||
name: user.name,
|
||||
link,
|
||||
}
|
||||
|
||||
|
|
@ -98,7 +96,6 @@ export const sendPasswordResetEmail = async (user: {
|
|||
const link = `${env.client.url}/auth/reset-password/${token}`
|
||||
// send email
|
||||
const dynamicTemplateData = {
|
||||
name: user.name,
|
||||
link,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue