Django
There is more detailed information about sending an email over SMTP with Django on the Django project website.
First, start by adding the following to settings.py:
1 2 3 4 5 |
|
Then to send email you can do the following:
1 2 |
|
You may also send emails with Django by using the django-ariticmail-v5library, which utilizes the Web API instead of SMTP as the transport mechanism.