Skip to main content

Mandrill transactional email for Django

Project description

Djrill integrates the Mandrill transactional email service into Django.

In general, Djrill “just works” with Django’s built-in django.core.mail package. It includes:

  • Support for HTML, attachments, extra headers, and other features of Django’s built-in email

  • Mandrill-specific extensions like tags, metadata, tracking, and MailChimp templates

  • Optional support for Mandrill inbound email and other webhook notifications, via Django signals

  • An optional Django admin interface

Djrill is released under the BSD license. It is tested against Django 1.3, 1.4, and 1.5 (including Python 3 support with Django 1.5).

build status on Travis-CI

Resources

Djrill 1-2-3

  1. Install Djrill from PyPI:

    $ pip install djrill
  2. Edit your project’s settings.py:

    INSTALLED_APPS = (
        ...
        "djrill"
    )
    
    MANDRILL_API_KEY = "<your Mandrill key>"
    EMAIL_BACKEND = "djrill.mail.backends.djrill.DjrillBackend"
  3. Now the regular Django email functions will send through Mandrill:

    from django.core.mail import send_mail
    
    send_mail("It works!", "This will get sent through Mandrill",
        "Djrill Sender <djrill@example.com>", ["to@example.com"])

    You could send an HTML message, complete with custom Mandrill tags and metadata:

    from django.core.mail import EmailMultiAlternatives
    
    msg = EmailMultiAlternatives(
        subject="Djrill Message",
        body="This is the text email body",
        from_email="Djrill Sender <djrill@example.com>",
        to=["Recipient One <someone@example.com>", "another.person@example.com"],
        headers={'Reply-To': "Service <support@example.com>"} # optional extra headers
    )
    msg.attach_alternative("<p>This is the HTML email body</p>", "text/html")
    
    # Optional Mandrill-specific extensions:
    msg.tags = ["one tag", "two tag", "red tag", "blue tag"]
    msg.metadata = {'user_id': "8675309"}
    
    # Send it:
    msg.send()

    (Be sure to use a from_email that’s in one of your Mandrill approved sending domains, or the message won’t get sent.)

See the full documentation for more features and options.

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

djrill-0.7.0.tar.gz (13.9 kB view details)

Uploaded Source

File details

Details for the file djrill-0.7.0.tar.gz.

File metadata

  • Download URL: djrill-0.7.0.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for djrill-0.7.0.tar.gz
Algorithm Hash digest
SHA256 57eab5da26ba3960e00133aa13b3a8b8b18c47b2877d3aebcf5c54c7dd7d3576
MD5 c2ba8fb65b1776e42969efdc1395aa43
BLAKE2b-256 cb8893542f6a22eb6c35065ea9e7b82cb1a7e5bab44d30fb77923a0220671a2d

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