chore(emails): update copy for failed payment email

Because:
 - the grace period mentioned in the failed payment email is no longer
   accurate

This commit:
 - update the failed payment email copy
This commit is contained in:
Barry Chen 2021-05-16 19:50:52 -05:00
Родитель 106202bf39
Коммит 2f9ab74947
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 228DB2785954A0D0
3 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -7,9 +7,7 @@
<br><br>
{{t "It may be that your credit card has expired, or your current payment method is out of date." }}
<br><br>
{{{t "Help us fix it by <a href=\"%(updateBillingUrl)s\">updating your payment information</a> within 24 hours." }}}
<br><br>
{{t "Unfortunately, if we dont hear from you within 24 hours, youll lose access to %(productName)s." }}
{{t "Well try your payment again over the next few days, but you may need to help us fix it by <a href=\"%(updateBillingUrl)s\">updating your payment information</a>."}}
<br><br>
{{{t "Questions about your subscription? Our <a href=\"%(subscriptionSupportUrl)s\">support team</a> is here to help you." }}}
{{/inline}}

Просмотреть файл

@ -6,12 +6,10 @@
{{{t "It may be that your credit card has expired, or your current payment method is out of date." }}}
{{{t "Help us fix it by updating your payment information within 24 hours:" }}}
{{{t "Well try your payment again over the next few days, but you may need to help us fix it by updating your payment information:" }}}
{{{updateBillingUrl}}}
{{{t "Unfortunately, if we dont hear from you within 24 hours, youll lose access to %(productName)s." }}}
{{{t "Questions about your subscription? Our support team is here to help you:" }}}
{{{subscriptionSupportUrl}}}

Просмотреть файл

@ -351,12 +351,12 @@ const TESTS = [
{ test: 'include', expected: configHref('subscriptionSettingsUrl', 'subscription-payment-failed', 'cancel-subscription', 'plan_id', 'product_id', 'uid', 'email') },
{ test: 'include', expected: configHref('subscriptionTermsUrl', 'subscription-payment-failed', 'subscription-terms') },
{ test: 'include', expected: `latest payment for ${MESSAGE.productName}.` },
{ test: 'include', expected: `youll lose access to ${MESSAGE.productName}.` },
{ test: 'include', expected: 'Well try your payment again over the next few days, but you may need to help us fix it' },
{ test: 'notInclude', expected: 'utm_source=email' },
]],
['text', [
{ test: 'include', expected: `latest payment for ${MESSAGE.productName}.` },
{ test: 'include', expected: `youll lose access to ${MESSAGE.productName}.` },
{ test: 'include', expected: 'Well try your payment again over the next few days, but you may need to help us fix it' },
{ test: 'notInclude', expected: 'utm_source=email' },
]]
])],