Skip to content

Commit

Permalink
fix: update verbiage on upgrade and welcome email content
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Oct 1, 2023
1 parent 0b4b9f6 commit 461bc85
Show file tree
Hide file tree
Showing 27 changed files with 430 additions and 58 deletions.
64 changes: 53 additions & 11 deletions emails/_upgrade.pug
Original file line number Diff line number Diff line change
@@ -1,17 +1,59 @@
.p-3.text-center
h2.h2= t("Need more features?")
p.card-text.small
= t("If you upgrade to the Enhanced Protection plan, then your forwarding addresses will be kept private and encrypted.")
h2.h3= t("Need real-time alerts and logs?")
p.card-text
= " "
!= t('<strong>Upgrading will also unlock access to <a href="%s" target="_blank">real-time error log alerts</a> and <a href="%s" target="_blank">outbound SMTP</a></strong>.', `${config.urls.web}/faq#do-you-store-error-logs`, `${config.urls.web}/guides/send-email-with-custom-domain-smtp`)
!= t('<strong>Upgrading will unlock <a href="%s" target="_blank">real-time alerts and logs</a> and <a href="%s" target="_blank">outbound SMTP support</a></strong>.', `${config.urls.web}/faq#do-you-store-error-logs`, `${config.urls.web}/guides/send-email-with-custom-domain-smtp`)
= " "
= t("These features will help you to ensure high deliverability and prevent email spoofing attacks.")
!= t("Outbound SMTP support means you can send email using any alias with your custom domain name.")
.d-block.mb-1
a.btn.btn-lg.btn-success(
href=domain && domain.name ? `${config.urls.web}/${locale}/my-account/domains/${domain.name}/billing?plan=enhanced_protection` : `${config.urls.web}/my-account/billing/upgrade?plan=enhanced_protection`,
role="button"
)
= t("Upgrade for $3")
a.badge.badge-primary.text-uppercase.mb-3(
href=`${config.urls.web}/${locale}/faq#do-you-offer-a-money-back-guarantee-on-paid-plans`
)
= t("100% Money back guarantee")
= " "
= t("The cost is only $3 per month and gives you unlimited domains, aliases, and more.")
!= "&rarr;"
p.card-text.font-weight-bold.text-decoration-underline.lead= t("Upgrading keeps your email private:")
span.badge.badge-dark!= ("Right now anyone can run this computer command:")
.d-block.mb-1
pre.d-inline-block.mx-auto.bg-dark.p-3.rounded.text-white.mb-0
code.d-block
= "dig"
= " "
= domain && domain.name ? domain.name : "yourdomain.com"
= " "
= "txt"
span.badge.badge-danger!= ("Your email is displayed in the output:")
.d-block.mb-1
pre.d-inline-block.mx-auto.bg-dark.p-3.rounded.text-white.mb-0
code.d-block
= "forward-email="
span.font-weight-bold(style="color: red")= to ? to : user && user.email ? user.email : "[email protected]"
span.badge.badge-success!= ("Upgrading will encrypt and hide your email:")
.d-block.mb-1
pre.d-inline-block.mx-auto.bg-dark.p-3.rounded.text-white.mb-0
code.d-block
= "forward-email="
span.font-weight-bold.text-success= new Array(10).fill("*").join("")
p.card-text
= t("These features will help you to ensure high deliverability and help to keep your email safe.")
= " "
= t("We also offer a 30-day automatic refund guarantee.")
a.btn.btn-lg.btn-success(
href=domain && domain.name ? `${config.urls.web}/${locale}/my-account/domains/${domain.name}/billing?plan=enhanced_protection` : `${config.urls.web}/my-account/billing/upgrade?plan=enhanced_protection`,
role="button"
= t("The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.")
p.card-text.font-weight-bold
= t("Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.")
.d-block.mb-1
a.btn.btn-lg.btn-success(
href=domain && domain.name ? `${config.urls.web}/${locale}/my-account/domains/${domain.name}/billing?plan=enhanced_protection` : `${config.urls.web}/my-account/billing/upgrade?plan=enhanced_protection`,
role="button"
)
= t("Upgrade for $3")
a.badge.badge-primary.text-uppercase(
href=`${config.urls.web}/${locale}/faq#do-you-offer-a-money-back-guarantee-on-paid-plans`
)
= t("Upgrade for $3")
= t("100% Money back guarantee")
= " "
!= "&rarr;"
49 changes: 27 additions & 22 deletions emails/welcome/html.pug
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,22 @@ block content
)
.p-3
h1.h3= t("Features")
ul.list-unstyled.text-left.mb-0.text-monospace.d-inline-block.mx-auto
ul.list-unstyled.text-left.mb-0.d-inline-block.mx-auto
li
= emoji("white_check_mark")
= " "
= t("Unlimited domains and aliases")
= " "
span.badge.text-uppercase.font-weight-normal.badge-success
span.badge.badge-success
= t("100% Free")
li
= emoji("white_check_mark")
= " "
= t("Privacy-focused email")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary.align-middle(href=`${config.urls.web}/${locale}/privacy`)
a.badge.badge-dark.align-middle(
href=`${config.urls.web}/${locale}/privacy`
)
= t("Privacy Policy")
= " "
!= "&rarr;"
Expand All @@ -36,7 +38,7 @@ block content
= " "
= t("Send outbound SMTP email")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary(
a.badge.badge-dark(
href=`${config.urls.web}/${locale}/guides/send-email-with-custom-domain-smtp`
)
= t("SMTP Guide")
Expand All @@ -47,7 +49,7 @@ block content
= " "
= t("Error logs and real-time alerts")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary(
a.badge.badge-dark(
href=`${config.urls.web}/${locale}/faq#do-you-store-error-logs`
)
= t("View FAQ")
Expand All @@ -58,7 +60,7 @@ block content
= " "
= t("Powered by bare metal servers")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary(
a.badge.badge-dark(
href="https://status.forwardemail.net",
target="_blank",
rel="noopener noreferrer"
Expand All @@ -71,7 +73,7 @@ block content
= " "
= t("100% open-source software")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary(
a.badge.badge-dark(
href="https://github.com/forwardemail",
target="_blank",
rel="noopener noreferrer"
Expand All @@ -86,30 +88,33 @@ block content
= " "
= t("Email API designed for developers")
= " "
a.badge.text-uppercase.font-weight-normal.badge-primary(href=`${config.urls.web}/${locale}/email-api`)
a.badge.badge-dark(
href=`${config.urls.web}/${locale}/email-api`
)
= t("Email API")
= " "
!= "&rarr;"
if user.plan === 'free'
include ../_upgrade
.p-3
h1.h3!= t("Did you need help?")
p.card-text!= t("Feel free to reply, contact support, or read our FAQ.")
h1.h3!= t("Your Account")
p.card-text!= t("Manage your aliases, domains, settings, and security.")
a.btn.btn-lg.btn-dark(
href=`${config.urls.web}/${locale}/my-account`
)
= t("My Account")
.p-3
h1.h3!= t("Customer Support")
p.card-text!= t("Read our FAQ, submit a help request, or reply to this email.")
ul.list-inline.mb-0
li.list-inline-item
a.btn.btn-lg.btn-warning(
href=`${config.urls.web}/${locale}/help`
)
= t("Contact Support")
li.list-inline-item
a.btn.btn-lg.btn-primary(
href=`${config.urls.web}/${locale}/faq`
)
= t("FAQ")
.p-3
h1.h3!= t("Need to manage your domains?")
a.btn.btn-lg.btn-dark(
href=`${config.urls.web}/${locale}/my-account`
)
= t("Go to My Account")
= t("Read FAQ")
li.list-inline-item
a.btn.btn-lg.btn-dark(
href=`${config.urls.web}/${locale}/help`
)
= t("Help Request")
.card-footer.small.text-muted= t("If you have any questions or comments, then please let us know")
15 changes: 14 additions & 1 deletion locales/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -4853,5 +4853,18 @@
"Contact Support": "اتصل بالدعم",
"Need to manage your domains?": "هل تحتاج إلى إدارة نطاقاتك؟",
"Go to My Account": "اذهب إلى حسابي",
"100% Free": "100٪ مجانا"
"100% Free": "100٪ مجانا",
"Need real-time alerts and logs?": "هل تحتاج إلى تنبيهات وسجلات في الوقت الفعلي؟",
"<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.": "<strong>ستؤدي الترقية إلى فتح <a href=\"%s\" target=\"_blank\">التنبيهات والسجلات في الوقت الفعلي</a> <a href=\"%s\" target=\"_blank\">ودعم SMTP الصادر</a></strong> .",
"Outbound SMTP support means you can send email using any alias with your custom domain name.": "دعم SMTP الصادر يعني أنه يمكنك إرسال بريد إلكتروني باستخدام أي اسم مستعار باستخدام اسم المجال المخصص الخاص بك.",
"100% Money back guarantee": "ضمان استرداد الأموال بنسبة 100%",
"Upgrading keeps your email private:": "الترقية تحافظ على خصوصية بريدك الإلكتروني:",
"These features will help you to ensure high deliverability and help to keep your email safe.": "ستساعدك هذه الميزات على ضمان إمكانية التسليم العالية وتساعد في الحفاظ على بريدك الإلكتروني آمنًا.",
"The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.": "تبلغ التكلفة 3 دولارات فقط شهريًا وتدعم خريطة الطريق والبنية التحتية للخادم والمجتمع مفتوح المصدر.",
"Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.": "تتضمن الترقية نطاقات وأسماء مستعارة غير محدودة، وتنبيهات وسجلات في الوقت الفعلي، والوصول إلى SMTP الصادر، والمزيد.",
"Your Account": "الحساب الخاص بك",
"Manage your aliases, domains, settings, and security.": "إدارة الأسماء المستعارة والمجالات والإعدادات والأمان.",
"Customer Support": "دعم العملاء",
"Read our FAQ, submit a help request, or reply to this email.": "اقرأ الأسئلة الشائعة، أو أرسل طلب مساعدة، أو قم بالرد على هذا البريد الإلكتروني.",
"Help Request": "طلب مساعدة"
}
15 changes: 14 additions & 1 deletion locales/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4853,5 +4853,18 @@
"Contact Support": "Kontaktujte podporu",
"Need to manage your domains?": "Potřebujete spravovat své domény?",
"Go to My Account": "Jdi na můj účet",
"100% Free": "100% zdarma"
"100% Free": "100% zdarma",
"Need real-time alerts and logs?": "Potřebujete upozornění a protokoly v reálném čase?",
"<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.": "<strong>Upgrade odemkne <a href=\"%s\" target=\"_blank\">výstrahy a protokoly v reálném čase</a> a <a href=\"%s\" target=\"_blank\">odchozí podporu SMTP</a></strong> .",
"Outbound SMTP support means you can send email using any alias with your custom domain name.": "Odchozí podpora SMTP znamená, že můžete odesílat e-maily pomocí libovolného aliasu s vlastním názvem domény.",
"100% Money back guarantee": "100% záruka vrácení peněz",
"Upgrading keeps your email private:": "Upgrade zachová váš e-mail v soukromí:",
"These features will help you to ensure high deliverability and help to keep your email safe.": "Tyto funkce vám pomohou zajistit vysokou doručitelnost a pomohou udržet váš e-mail v bezpečí.",
"The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.": "Cena je pouze 3 dolary měsíčně a podporuje naši cestovní mapu, serverovou infrastrukturu a komunitu open source.",
"Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.": "Upgrade zahrnuje neomezený počet domén a aliasů, upozornění a protokoly v reálném čase, odchozí přístup SMTP a další.",
"Your Account": "Váš účet",
"Manage your aliases, domains, settings, and security.": "Spravujte své aliasy, domény, nastavení a zabezpečení.",
"Customer Support": "Zákaznická podpora",
"Read our FAQ, submit a help request, or reply to this email.": "Přečtěte si naše časté dotazy, odešlete žádost o pomoc nebo odpovězte na tento e-mail.",
"Help Request": "Žádost o pomoc"
}
15 changes: 14 additions & 1 deletion locales/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -4589,5 +4589,18 @@
"Contact Support": "Kontakt support",
"Need to manage your domains?": "Har du brug for at administrere dine domæner?",
"Go to My Account": "Gå til Min konto",
"100% Free": "100 % gratis"
"100% Free": "100 % gratis",
"Need real-time alerts and logs?": "Har du brug for advarsler og logfiler i realtid?",
"<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.": "<strong>Opgradering låser op <a href=\"%s\" target=\"_blank\">for alarmer og logfiler i realtid</a> og <a href=\"%s\" target=\"_blank\">udgående SMTP-understøttelse</a></strong> .",
"Outbound SMTP support means you can send email using any alias with your custom domain name.": "Udgående SMTP-support betyder, at du kan sende e-mail ved hjælp af et hvilket som helst alias med dit tilpassede domænenavn.",
"100% Money back guarantee": "100 % pengene tilbage garanti",
"Upgrading keeps your email private:": "Opgradering holder din e-mail privat:",
"These features will help you to ensure high deliverability and help to keep your email safe.": "Disse funktioner vil hjælpe dig med at sikre høj leveringsevne og hjælpe med at holde din e-mail sikker.",
"The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.": "Prisen er kun $3 pr. måned og understøtter vores køreplan, serverinfrastruktur og open source-fællesskabet.",
"Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.": "Opgradering omfatter ubegrænsede domæner og aliaser, realtidsadvarsler og logfiler, udgående SMTP-adgang og mere.",
"Your Account": "Din konto",
"Manage your aliases, domains, settings, and security.": "Administrer dine aliasser, domæner, indstillinger og sikkerhed.",
"Customer Support": "Kunde support",
"Read our FAQ, submit a help request, or reply to this email.": "Læs vores ofte stillede spørgsmål, indsend en anmodning om hjælp, eller besvar denne e-mail.",
"Help Request": "Anmodning om hjælp"
}
15 changes: 14 additions & 1 deletion locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -3881,5 +3881,18 @@
"Contact Support": "Kontaktieren Sie Support",
"Need to manage your domains?": "Müssen Sie Ihre Domains verwalten?",
"Go to My Account": "Gehen Sie zu Mein Konto",
"100% Free": "100% kostenlos"
"100% Free": "100% kostenlos",
"Need real-time alerts and logs?": "Benötigen Sie Echtzeitwarnungen und Protokolle?",
"<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.": "<strong>Durch das Upgrade werden <a href=\"%s\" target=\"_blank\">Echtzeitwarnungen und -protokolle</a> sowie <a href=\"%s\" target=\"_blank\">ausgehende SMTP-Unterstützung</a> freigeschaltet</strong> .",
"Outbound SMTP support means you can send email using any alias with your custom domain name.": "Durch die ausgehende SMTP-Unterstützung können Sie E-Mails unter Verwendung eines beliebigen Alias mit Ihrem benutzerdefinierten Domänennamen senden.",
"100% Money back guarantee": "100 % Geld-zurück-Garantie",
"Upgrading keeps your email private:": "Durch das Upgrade bleiben Ihre E-Mails privat:",
"These features will help you to ensure high deliverability and help to keep your email safe.": "Diese Funktionen helfen Ihnen dabei, eine hohe Zustellbarkeit sicherzustellen und Ihre E-Mails sicher zu halten.",
"The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.": "Die Kosten betragen nur 3 US-Dollar pro Monat und unterstützen unsere Roadmap, Serverinfrastruktur und die Open-Source-Community.",
"Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.": "Das Upgrade umfasst unbegrenzte Domänen und Aliase, Echtzeitwarnungen und -protokolle, ausgehenden SMTP-Zugriff und mehr.",
"Your Account": "Ihr Konto",
"Manage your aliases, domains, settings, and security.": "Verwalten Sie Ihre Aliase, Domänen, Einstellungen und Sicherheit.",
"Customer Support": "Kundendienst",
"Read our FAQ, submit a help request, or reply to this email.": "Lesen Sie unsere FAQ, senden Sie eine Hilfeanfrage oder antworten Sie auf diese E-Mail.",
"Help Request": "Hilfeanforderung"
}
15 changes: 14 additions & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -4627,5 +4627,18 @@
"Contact Support": "Contact Support",
"Need to manage your domains?": "Need to manage your domains?",
"Go to My Account": "Go to My Account",
"100% Free": "100% Free"
"100% Free": "100% Free",
"Need real-time alerts and logs?": "Need real-time alerts and logs?",
"<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.": "<strong>Upgrading will unlock <a href=\"%s\" target=\"_blank\">real-time alerts and logs</a> and <a href=\"%s\" target=\"_blank\">outbound SMTP support</a></strong>.",
"Outbound SMTP support means you can send email using any alias with your custom domain name.": "Outbound SMTP support means you can send email using any alias with your custom domain name.",
"100% Money back guarantee": "100% Money back guarantee",
"Upgrading keeps your email private:": "Upgrading keeps your email private:",
"These features will help you to ensure high deliverability and help to keep your email safe.": "These features will help you to ensure high deliverability and help to keep your email safe.",
"The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.": "The cost is only $3 per month and supports our roadmap, server infrastructure, and the open-source community.",
"Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.": "Upgrading includes unlimited domains and aliases, real-time alerts and logs, outbound SMTP access, and more.",
"Your Account": "Your Account",
"Manage your aliases, domains, settings, and security.": "Manage your aliases, domains, settings, and security.",
"Customer Support": "Customer Support",
"Read our FAQ, submit a help request, or reply to this email.": "Read our FAQ, submit a help request, or reply to this email.",
"Help Request": "Help Request"
}
Loading

0 comments on commit 461bc85

Please sign in to comment.