I am trying to send emails from Django using an email configured by Google Apps, my configuration at the settings.py file looks something like this:
<
I got the following response from Google Apps support:
You need to turn on your Outbound relay. To do this:
- Log into your account at google.com/a/yourdomain.com
- Click the Settings tab and then select Email in the left column.
- In the Outbound relay section, select Allow users to send mail through an external SMTP when configuring a "from" address hosted outside your domain.
- Click Save changes.
They also provided a help link: http://support.google.com/a/bin/answer.py?hl=en&answer=176054
After turning on Outbound relay and using the proxy to login to the webmail one more time (thanks to @DaniloBargen and @joshcartme) the issue was resolved. I've read the link explaining what the Outbound relay is and I'm not really sure why would I need it (I don't believe I'm using an external SMTP server).
Since I'm not really sure this is what solved the issue I won't mark the response as accepted until I get some confirmation.