Postmark's API disallows Reply-To in the message headers; it's only permitted in Postmark's ReplyTo param.
# This works:
EmailMessage(..., reply_to=['reply@example.com']).send()
# This doesn't:
EmailMessage(..., headers={'Reply-To': 'reply@example.com'}).send()
Using the headers was the only option before Django added the explicit reply_to param. There may be some old code out there still using the headers approach.
Anymail should relocate Reply-To from the generic headers, if needed.
Postmark's API disallows Reply-To in the message headers; it's only permitted in Postmark's ReplyTo param.
Using the headers was the only option before Django added the explicit
reply_toparam. There may be some old code out there still using the headers approach.Anymail should relocate Reply-To from the generic headers, if needed.