Replies: 1 comment
-
@bradrice I moved your question to the discussions, since it didn't seem like a bug report or feature request.
It's hard to say without seeing your code, but this error suggests you're trying to send email without any message body. Mailgun doesn't want to send an empty email. If you can show your form code where the email is being sent, that might help narrow it down. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My message sends using anymail to mailgun with django, but my form doesn't redirect because I get this 400 error back from mailgun:
Mailgun API response 400 (Bad Request):
{
"message": "Need at least one of 'text', 'html', 'amp-html' or 'template' parameters specified"
}
Is there a parameter I need to put in my settings I'm not finding in the docs?
Beta Was this translation helpful? Give feedback.
All reactions