Skip to content

regulusweb/django-postmark-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Postmark Utils

Django utilities to help track emails sent using Postmark.

Features

  • Store emails (including failed attempts) sent from within your project
  • Receive and store webhook notifications, for email bounces and deliveries
  • Track sent emails for errors, bounces, and deliveries
  • Resend emails

Prerequisites

Installation

$ pip install git+https://github.com/regulusweb/django-postmark-utils.git

Django Postmark Utils makes use of the Django email backend provided by Postmarker, so first configure it in your project's settings, as per the documentation.

EMAIL_BACKEND = 'postmarker.django.EmailBackend'
POSTMARK = {
    'TOKEN': '<YOUR POSTMARK SERVER TOKEN>',
    'TEST_MODE': False,
    'VERBOSITY': 0,
}

Add the app to your project's INSTALLED_APPS setting:

INSTALLED_APPS = (
    'django_postmark_utils',
)

Create the required database tables:

$ python manage.py migrate django_postmark_utils

To receive bounce and delivery webhook notifications from Postmark, configure the webhook URLs in your project's URL configuration:

urlpatterns = [
    url(r'^postmark/', include('django_postmark_utils.urls')),
]

In your project's settings, configure a secret to be added to the webhook URLs:

POSTMARK_UTILS_SECRET = '<YOUR WEBHOOK URLS SECRET>'

Add the webhook URLs to your Postmark account:

https://example.com/postmark/<YOUR WEBHOOK URLS SECRET>/bounce-receiver/ https://example.com/postmark/<YOUR WEBHOOK URLS SECRET>/delivery-receiver/

Optionally change the default email header field name (X-DjangoPostmarkUtils-Resend-For) used to match resent emails to the messages they are for, in your project's settings:

MESSAGE_ID_HEADER_FIELD_NAME = '<YOUR CUSTOM EMAIL HEADER FIELD NAME>'

Usage

Emails (including failed attempts) sent via the Postmarker email backend will be stored in the database, and can be viewed in the admin.

In the email change page, clicking on the Go to resend list link next to the Resend field will send you to a list from where you can use the Resend emails admin action to resend the email.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages