However, this yields the Sparkpost API error pasted below. I'm using Django Anymail 1.3 with python-sparkpost 1.3.5. Any suggestions would be tremendous!
Sending a message to test@example.com from mail@bounces.example.com
SparkPost API response 422: Unprocessable Entity
{
"errors": [
{
"message": "Invalid header",
"description": "Error while validating header From: 'From' header must be specified in content.from.name and content.from.email",
"code": "3002"
}
]
}
I'm attempting to set a different MAIL_FROM and
Fromheader in Django so that I can use a custom bounce domain. Django allows this by setting the bounce domain as the email'sself.from_emailattribute, and overriding theFromheader manually.However, this yields the Sparkpost API error pasted below. I'm using Django Anymail 1.3 with python-sparkpost 1.3.5. Any suggestions would be tremendous!