Skip to content

Commit

Permalink
BUGFIX: support replyToAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaip committed Mar 1, 2018
1 parent ccf043f commit 14fd546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Fusion/Root.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ prototype(Psmb.Newsletter:MailRenderer) < prototype(Neos.Fusion:RawArray) {
#}
recipientAddress = ${subscriber.email}
recipientName = ${subscriber.name}
replyToAddress = ${subscription.senderAddress || globalSettings.senderAddress}
replyToAddress = ${subscription.replyToAddress || globalSettings.replyToAddress || subscription.senderAddress || globalSettings.senderAddress}
senderAddress = ${subscription.senderAddress || globalSettings.senderAddress}
senderName = ${subscription.senderName || globalSettings.senderName}
}
Expand Down

0 comments on commit 14fd546

Please sign in to comment.