Skip to main content

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


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.3.0.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file django-sendgrid-0.3.0.tar.gz.

File metadata

File hashes

Hashes for django-sendgrid-0.3.0.tar.gz
Algorithm Hash digest
SHA256 62cafc475c70bc788b154577d9e1790b564a7c93d63e3e834713378d0fb7fcc0
MD5 cbdf90d667277ac11ef13b7a0c52c6d5
BLAKE2b-256 22e7a47c4f351a50fb8f1221923b5ec9dc113417c82878453d181ece61c30bee

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page