From 62e72b853991feffc87cbe0bf87ab3b2f445c45a Mon Sep 17 00:00:00 2001 From: S M Fahim Hossen Date: Mon, 15 Sep 2025 15:54:25 +0600 Subject: [PATCH] complete authentication for platform level and website level both --- src/app/utils/sendConfirmationEmail.js | 6 +++--- src/app/utils/sendResetPassEmail.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/utils/sendConfirmationEmail.js b/src/app/utils/sendConfirmationEmail.js index 7cbeb9c..4e3e7e2 100644 --- a/src/app/utils/sendConfirmationEmail.js +++ b/src/app/utils/sendConfirmationEmail.js @@ -7,7 +7,7 @@ const sendConfirmationEmail = (userEmail, token) => { const mailOptions = { from: config.mail_user, to: userEmail, - subject: "Confirm Your Email Address - Learnup Bangladesh", + subject: "Confirm Your Email Address - Website Builder", html: ` @@ -68,7 +68,7 @@ const sendConfirmationEmail = (userEmail, token) => {
-

Welcome to Learnup Bangladesh!

+

Welcome to Website Builder!

Thank you for registering with us. Please confirm your email address by clicking the button below:

Confirm Email Address @@ -77,7 +77,7 @@ const sendConfirmationEmail = (userEmail, token) => {

${confirmationLink}

If you didn't register, please ignore this email.

diff --git a/src/app/utils/sendResetPassEmail.js b/src/app/utils/sendResetPassEmail.js index 0f57fe5..a2d5827 100644 --- a/src/app/utils/sendResetPassEmail.js +++ b/src/app/utils/sendResetPassEmail.js @@ -5,7 +5,7 @@ const sendResetPassEmail = (userEmail, resetLink) => { const mailOptions = { from: config.mail_user, to: userEmail, - subject: "Reset your password - Learnup Bangladesh", + subject: "Reset your password - Website Builder", html: ` @@ -66,7 +66,7 @@ const sendResetPassEmail = (userEmail, resetLink) => {
-

Welcome to Learnup Bangladesh!

+

Welcome to Website Builder!

We have recived a request to reset you password. Please confirm your email address by clicking the button below:

Reset Password @@ -75,7 +75,7 @@ const sendResetPassEmail = (userEmail, resetLink) => {

${resetLink}

If you didn't register, please ignore this email.