Skip to content

Commit

Permalink
Merge pull request #3435 from airqo-platform/hotfix-remove-bcc
Browse files Browse the repository at this point in the history
removing BCC for all new user registrations
  • Loading branch information
Baalmart authored Sep 16, 2024
2 parents bf1b0f8 + 8e4d5fb commit 25e12f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth-service/utils/mailer.js
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ const mailer = {
}

const subscribedBccEmails = subscribedEmails.join(",");
//bcc: subscribedBccEmails,

let mailOptions = {};
mailOptions = {
Expand All @@ -914,7 +915,6 @@ const mailer = {
to: `${email}`,
subject: "Welcome to AirQo!",
html: msgTemplates.afterEmailVerification(firstName, username, email),
bcc: subscribedBccEmails,
attachments: attachments,
};

Expand Down

0 comments on commit 25e12f6

Please sign in to comment.