Fix email subject variables

This commit is contained in:
Kim Gardner
2018-05-03 16:23:47 -04:00
parent 903b74cb31
commit d9806c0ecc
3 changed files with 11 additions and 8 deletions
@@ -131,7 +131,7 @@ module.exports = connectors => {
organizationContactEmail
),
},
subject: I18n.t('email.deleted.subject'),
subject: I18n.t('email.deleted.subject', organizationName),
email,
});
}
@@ -142,7 +142,7 @@ async function requestDeletion({
scheduledDeletionDate.format('MMM Do YYYY, h:mm:ss a')
),
},
subject: I18n.t('email.delete.subject'),
subject: I18n.t('email.delete.subject', organizationName),
});
return scheduledDeletionDate.toDate();
@@ -183,7 +183,7 @@ async function cancelDeletion({
moment(scheduledDeletionDate).format('MMM Do YYYY, h:mm:ss a')
),
},
subject: I18n.t('email.cancelDelete.subject'),
subject: I18n.t('email.cancelDelete.subject', organizationName),
});
}
@@ -17,16 +17,19 @@ en:
delete:
subject: "Your account for {0} is scheduled to be deleted"
body: |
A request to delete your account was received on {0} and your account is scheduled to be deleted on {1}.
A request to delete your account was received. Your account is scheduled for deletion on {1}.
After that time all of your comments will be removed from the site, all of your comments will be removed from our database, and your username and email address are removed from our system.
To cancel this request, sign into your account and cancel the request before your scheduled account deletion time.
If you didn't request this change contact {2}
deleted:
subject: "Your account for {0} has been deleted"
body: |
Your commenter account for {0} is now deleted. Were sorry to see you go!
If youd like to re-join the discussion in the future, you can sign up for a new account.
If youd like to give us feedback on why you left and what we can do to make the commenting experience better, please email us at {1}.
Your commenter account for {0} is now deleted. We're sorry to see you go!
If you'd like to re-join the discussion in the future, you can sign up for a new account.
If you'd like to give us feedback on why you left and what we can do to make the commenting experience better, please email us at {1}.
cancelDelete:
subject: "Your account deletion request for {0} has been cancelled"
body: "You have cancelled your account deletion request for {0}. Your account is now reactivated."