mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Fixed custom subjects for mega emails
This commit is contained in:
parent
74f2145e81
commit
fb88c541be
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ const bulkEmailService = require('./bulk-email');
|
|||
|
||||
const sendEmail = async (post) => {
|
||||
const emailTmpl = {
|
||||
subject: post.email_subject || post.title,
|
||||
subject: post.posts_meta.email_subject || post.title,
|
||||
html: post.html
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue