We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b78639b + c1d006c commit 032044cCopy full SHA for 032044c
email-confirmation/functions/index.js
@@ -42,7 +42,7 @@ exports.sendEmailConfirmation = functions.database.ref('/users/{uid}').onWrite(e
42
// The user just subscribed to our newsletter.
43
if (val.subscribedToMailingList) {
44
mailOptions.subject = 'Thanks and Welcome!';
45
- mailOptions.text = 'Thanks you for subscribing to uour newsletter. You will receive our next weekly newsletter.';
+ mailOptions.text = 'Thanks you for subscribing to our newsletter. You will receive our next weekly newsletter.';
46
return mailTransport.sendMail(mailOptions).then(() => {
47
console.log('New subscription confirmation email sent to:', val.email);
48
});
0 commit comments