mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Updated send test email to use common email data
This commit is contained in:
parent
d3229b6ade
commit
b7df5c360d
1 changed files with 11 additions and 3 deletions
|
@ -8,7 +8,7 @@ const models = require('../../models');
|
|||
const postEmailSerializer = require('./post-email-serializer');
|
||||
const urlUtils = require('../../lib/url-utils');
|
||||
|
||||
const getEmailData = (post, members) => {
|
||||
const getEmailData = (post, members = []) => {
|
||||
const emailTmpl = postEmailSerializer.serialize(post);
|
||||
emailTmpl.from = membersService.config.getEmailFromAddress();
|
||||
|
||||
|
@ -35,9 +35,17 @@ const sendEmail = async (post, members) => {
|
|||
};
|
||||
|
||||
const sendTestEmail = async (post, emails) => {
|
||||
const emailTmpl = postEmailSerializer.serialize(post);
|
||||
const {emailTmpl} = getEmailData(post);
|
||||
const emailData = emails.reduce((emailData, email) => {
|
||||
return Object.assign({
|
||||
[email]: {
|
||||
unique_id: '',
|
||||
unsubscribe_url: ''
|
||||
}
|
||||
}, emailData);
|
||||
}, {});
|
||||
emailTmpl.subject = `${emailTmpl.subject} [Test]`;
|
||||
return bulkEmailService.send(emailTmpl, emails);
|
||||
return bulkEmailService.send(emailTmpl, emails, emailData);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue