Skip to content

Commit 032044c

Browse files
Merge pull request #27 from justweb1/patch-1
Fix Typo
2 parents b78639b + c1d006c commit 032044c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

email-confirmation/functions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ exports.sendEmailConfirmation = functions.database.ref('/users/{uid}').onWrite(e
4242
// The user just subscribed to our newsletter.
4343
if (val.subscribedToMailingList) {
4444
mailOptions.subject = 'Thanks and Welcome!';
45-
mailOptions.text = 'Thanks you for subscribing to uour newsletter. You will receive our next weekly newsletter.';
45+
mailOptions.text = 'Thanks you for subscribing to our newsletter. You will receive our next weekly newsletter.';
4646
return mailTransport.sendMail(mailOptions).then(() => {
4747
console.log('New subscription confirmation email sent to:', val.email);
4848
});

0 commit comments

Comments
 (0)