automatically pass reply-to to mailgun
Closed this issue · 1 comments
guruofgentoo commented
Mailgun docs require passing the reply-to value as a header. keg-mail does not currently handle this, so if message has a reply-to set, this gets dropped on send via the Mailgun API.
Current workaround is to set mailgun_opts
on send, i.e.:
flask.current_app.mail.send(
msg,
mailgun_opts={
'h:Reply-To': msg.reply_to,
},
)
guruofgentoo commented
Fixed in 0.3.0