Working on a Python/Django app, deploying with Heroku and sending emails with Mandrill. I've been able to send emails using my local configuration, but when I deploy to Heroku, the mail doesn't send but Heroku doesn't throw an error. When I check heroku config
my Mandrill api key and username are both there.
Here are my email settings from settings.py:
import os
EMAIL_HOST = 'smtp.mandrillapp.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = os.environ.get('MANDRILL_USERNAME')
EMAIL_HOST_PASSWORD = os.environ.get('MANDRILL_APIKEY')
EMAIL_USE_TLS = True
Any idea what might be the problem?