django - Send emails with a new domain? -


i new emailing systems in web applications. i've built django app , i'd add send email functionality. bought domain 'mydomain.com' , want send emails 'services@mydomain.com'. possible using mandrill?

edit

i have domain, there's no yet email address created domain, first time in charge of , i'd know how create emails addresses , use send messages via django app , mandrill.


i have working 'gmail' account, in settings have:

# email  default_from_email = 'myaccount@gmail.com' server_email = 'myaccount@gmail.com' email_host_user = 'myaccount@gmail.com' email_host_password = 'mypassword' email_host = 'smtp.gmail.com' email_port = '587' email_use_tls = true 

djrill mandrill email backend django. uses mandrill http api rather smtp, can helpful if running in environment blocks outgoing smtp ports or need extended status mandrill after sending message.

otherwise, using mandrill's smtp integration works fine, suggested in other answers.


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -