0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

🎨 Fixed test newsletter email subject

no issue.

- "[Test]" being appended (at the end of) the test email subject made it hard to scan for test emails. This fixes it by prepending "[Test]" to the subject.
This commit is contained in:
Peter Zimon 2019-12-03 16:26:25 +01:00
parent 2e28bc2a5f
commit 60c44d360b

View file

@ -39,7 +39,7 @@ const sendTestEmail = async (postModel, toEmails) => {
return {email};
});
const {emailTmpl, emails, emailData} = await getEmailData(postModel, recipients);
emailTmpl.subject = `${emailTmpl.subject} [Test]`;
emailTmpl.subject = `[Test] ${emailTmpl.subject}`;
return bulkEmailService.send(emailTmpl, emails, emailData);
};