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.