From 526451e127e7d78daccba3a7c1d6cc053bdd832f Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 13 Aug 2023 15:08:57 +0200 Subject: [PATCH] chore: Typo fix in email script --- scripts/send-real-email.mjs | 4 ++-- scripts/send-test-email.mjs | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/send-real-email.mjs b/scripts/send-real-email.mjs index 6dd94a1d050..5fa49b7c567 100644 --- a/scripts/send-real-email.mjs +++ b/scripts/send-real-email.mjs @@ -27,7 +27,7 @@ Your account on FreeSewing.org has been inactive an scheduled for removal. If you want to keep your account, please login on FreeSewing.org within the next 2 weeks. If your account stays dormant, it will at one point become unavailable. -That does not have to be a disaster, you can always create a new one, but you will loose all data stored in your account. +That does not have to be a disaster, you can always create a new one, but you will lose all data stored in your account. This will be the only email I sent you about this. If you have questions, you can reply to this message. @@ -54,7 +54,7 @@ const html = mustache.render( closing: ` If your account stays dormant, it will at one point become unavailable.

- That does not have to be a disaster, you can always create a new one, but you will loose all data stored in your account. + That does not have to be a disaster, you can always create a new one, but you will lose all data stored in your account.

This will be the only email I sent you about this.
diff --git a/scripts/send-test-email.mjs b/scripts/send-test-email.mjs index 5f617d522cb..806e0eb167c 100644 --- a/scripts/send-test-email.mjs +++ b/scripts/send-test-email.mjs @@ -17,7 +17,7 @@ Your account on FreeSewing.org has been inactive an scheduled for removal. If you want to keep your account, please login on FreeSewing.org within the next 2 weeks. If your account stays dormant, it will at one point become unavailable. -That does not have to be a disaster, you can always create a new one, but you will loose all data stored in your account. +That does not have to be a disaster, you can always create a new one, but you will lose all data stored in your account. This will be the only email I sent you about this. If you have questions, you can reply to this message. @@ -44,7 +44,7 @@ const html = mustache.render( closing: ` If your account stays dormant, it will at one point become unavailable.

- That does not have to be a disaster, you can always create a new one, but you will loose all data stored in your account. + That does not have to be a disaster, you can always create a new one, but you will lose all data stored in your account.

This will be the only email I sent you about this.
@@ -60,8 +60,8 @@ const html = mustache.render( ) send({ - to: ['nidhubhs@gmail.com'], - bcc: ['joost@joost.at', 'joost@decock.org'], + to: ['joost@joost.at'], + bcc: ['joost@decock.org'], subject: '[FreeSewing] Your account is inactive and marked for removal', html, text,