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:
parent
2e28bc2a5f
commit
60c44d360b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue