diff --git a/src/core/server/locales/en-US/email.ftl b/src/core/server/locales/en-US/email.ftl index 6873c9617..854b161d3 100644 --- a/src/core/server/locales/en-US/email.ftl +++ b/src/core/server/locales/en-US/email.ftl @@ -90,22 +90,19 @@ email-footer-notification = email-subject-notificationOnReply = Someone has replied to your comment on { $organizationName } email-template-notificationOnReply = - { $organizationName } - { $storyTitle }

- { $authorUsername } has replied to your comment: View comment + { $authorUsername } has replied to the comment you posted on { $storyTitle } ## On Featured email-subject-notificationOnFeatured = One of your comments was featured on { $organizationName } email-template-notificationOnFeatured = - { $organizationName } - { $storyTitle }

- A member of our team has selected this comment to be featured for other readers: View comment + A member of our team has featured the comment you posted on { $storyTitle } ## On Staff Reply email-subject-notificationOnStaffReply = Someone at { $organizationName } has replied to your comment email-template-notificationOnStaffReply = - { $organizationName } - { $storyTitle }

- { $authorUsername } works for { $organizationName } and has replied to your comment: View comment + { $authorUsername } of { $organizationName } has replied to the comment you posted on { $storyTitle } ## On Comment Approved diff --git a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-featured.html b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-featured.html index 4b07eca4a..d5a2e1b07 100644 --- a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-featured.html +++ b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-featured.html @@ -1,4 +1,3 @@
- {{ context.organizationName }} - {{ context.storyTitle }}

- A member of our team has selected this comment to be featured for other readers: View comment + A member of our team has featured the comment you posted on {{ context.storyTitle }}
diff --git a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-reply.html b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-reply.html index 6426ec062..6d447fc82 100644 --- a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-reply.html +++ b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-reply.html @@ -1,4 +1,3 @@
- {{ context.organizationName }} - {{ context.storyTitle }}

- {{ context.authorUsername }} has replied to your comment: View comment + {{ context.authorUsername }} has replied to the comment you posted on {{ context.storyTitle }}
diff --git a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-staff-reply.html b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-staff-reply.html index 88881164d..cc2b0cdf9 100644 --- a/src/core/server/queue/tasks/mailer/templates/notification/partials/on-staff-reply.html +++ b/src/core/server/queue/tasks/mailer/templates/notification/partials/on-staff-reply.html @@ -1,4 +1,3 @@
- {{ context.organizationName }} - {{ context.storyTitle }}

- {{ context.authorUsername }} works for {{ context.organizationName }} and has replied to your comment: View comment + {{ context.authorUsername }} of {{ context.organizationName }} has replied to the comment you posted on {{ context.storyTitle }}