django-sendgrid
Project description
django-sendgrid is the easiest way to send e-mail with SendGrid. It uses the SendGrid SMTP API, as recommended.
Although it’s rather simple to use, a example project is included to demonstrate usage.
Installation
To install with PyPi:
pip install django-sendgrid
Usage
Add sendgrid to your INSTALLED_APPS:
INSTALLED_APPS = ( # Existing apps "sendgrid", )
Add the following to your settings:
SENDGRID_EMAIL_HOST = "smtp.sendgrid.net" SENDGRID_EMAIL_PORT = 587 SENDGRID_EMAIL_USERNAME = "your_sendgrid_username" SENDGRID_EMAIL_PASSWORD = "your_sendgrid_password"
The API is similar to that of Django’s; create a SendGridEmailMessage and send it:
>>> from sendgrid.message import SendGridEmailMessage >>> email = SendGridEmailMessage('Subject', 'Body', 'ryan@ryanbalfanz.net', ['ryan@ryanbalfanz.net']) >>> email.send()
Additional Information
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-sendgrid-0.5.0.tar.gz
(13.2 kB
view details)
File details
Details for the file django-sendgrid-0.5.0.tar.gz
.
File metadata
- Download URL: django-sendgrid-0.5.0.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2111138aefbf62518a9c9b7881165cfb6fdb35fe77166f6fa96d90e1c946c57 |
|
MD5 | bcbd36e8e8943010eea11280e42b583a |
|
BLAKE2b-256 | bf170c1d0b391e5a1b4120364c82649062cea24900cbedfca34047ddf9fce0b1 |