mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
🐛 Fixed reply-to address not set for newsletters
closes https://github.com/TryGhost/Ghost/issues/12492 The changes to email processing models had set replyTo address for an email batch as `reply_to` instead of `replyTo` which was not picked by mailgun service for setting newsletter reply address
This commit is contained in:
parent
81218ab467
commit
d2543462fa
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ function send(message, recipientData, replacements) {
|
|||
messageData = {
|
||||
to: Object.keys(recipientData),
|
||||
from: message.from,
|
||||
'h:Reply-To': message.replyTo,
|
||||
'h:Reply-To': message.replyTo || message.reply_to,
|
||||
subject: messageContent.subject,
|
||||
html: messageContent.html,
|
||||
text: messageContent.plaintext,
|
||||
|
|
Loading…
Add table
Reference in a new issue