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 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"
Create a SendGridEmailMessage and send it:
>>> from sendgrid.message import SendGridEmailMessage >>> email = SendGridEmailMessage('Subject', 'Body', 'ryan@ryanbalfanz.net', ['ryan@ryanbalfanz.net']) >>> email.send()
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.1.1.tar.gz
(4.6 kB
view details)
File details
Details for the file django-sendgrid-0.1.1.tar.gz
.
File metadata
- Download URL: django-sendgrid-0.1.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99ae32bb902a232810b98a356cb1f42c1b5dffb735c08ed8ac41bac4e24dc375 |
|
MD5 | 0c24bae013952c8b187ea10576ebb1a9 |
|
BLAKE2b-256 | b010c3d01c7815abf1d01c03b808ff32b306ba1cda977cc0ce22c3957b506d9d |