Skip to main content

A reusable Django app to send emails via GOV.UK notify robustly and with good observability

Project description

django-govuk-notify-outbox logo - a blue envelope with a tick in a green circle

django-govuk-notify-outbox

A reusable Django app to send emails via GOV.UK notify robustly and with good observability.


[!IMPORTANT] This README serves as a rough design spec - many or all things described here don't yet exist


Contents


Features

  • Sends emails outside of the request/response cycle (via Celery)
  • Automatically retries communication with GOV.UK Notify up to a maximum number / maximum amount of time
  • Usage is consistent with the send_email_notification function from notifications-python-client
  • Emails and updates from GOV.UK Notify (including HTTP errors and Python exceptions) are stored in Django models...
  • ... so can be linked (via foreign key or many-to-many relation) to other models to be used in the user-facing application
  • ... and are visible in the Django admin interface

Prerequisites

  • An existing (even if newly created) Django project
  • ... which is configured with Celery and Celery Beat to run background tasks
  • A GOV.UK Notify service API Key

Installation

  1. Install django-govuk-notify-outbox from PyPI.

    Typically you would do this by adding django-govuk-notify-outbox as a dependency to your existing Django project, for example with uv:

    uv add django-govuk-notify-outbox
    
  2. Add django_govuk_notify_outbox to settings.INSTALLED_APPS

    INSTALLED_APPS = [
        # ...
        "django_govuk_notify_outbox",
    ]
    
  3. Add settings.GOVUK_NOTIFY_API_KEY with your GOV.UK Notify API key, typically from an environment variable.

    import os
    
    GOVUK_NOTIFY_API_KEY = os.environ['GOVUK_NOTIFY_API_KEY']
    
  4. Add django_govuk_notify_outbox.tasks.sync to settings.CELERY_BEAT_SCHEDULE on a frequent schedule, for example every 5 seconds. If there is nothing to do, this will finish quickly and without connecting to GOV.UK notify.

    CELERY_BEAT_SCHEDULE = {
        "sync": {
            "task": "django_govuk_notify_outbox.tasks.sync",
            "schedule": 5,
        },
    }
    

Usage

Fire and forget

Once installed, emails can be sent from any part of your Django project with the django_govuk_notify_outbox.utils.send_email_notification function, which is designed to be consistent with the "fire and forget"-style send_email_notification function from notifications-python-client

from django_govuk_notify_outbox.utils import send_email_notification

notifications_client.send_email_notification(
    email_address="amala@example.com",
    template_id="9d751e0e-f929-4891-82a1-a3e1c3c18ee3",
)

Attaching to your own models

The return value of send_email_notification is an instance of the Django model django_govuk_notify_outbox.models.EmailMessage, and it can be attached to your own models in the usual way via ForeignKey or ManyToManyField. Each EmailMessage is updated through the email sending process until is is delivered or failed.

For example:

# In your app's models.py
from django.db import models
from django_govuk_notify_outbox.models import EmailMessage

class MyModel(models.Model):
    email_messages = models.ManyToManyField(EmailMessage)

# Anywhere in your app
email_message = notifications_client.send_email_notification(
    email_address="amala@example.com",
    template_id="9d751e0e-f929-4891-82a1-a3e1c3c18ee3",
)
my_model_instance = MyModel.create()
my_model_instance.email_messages.add(email_message)
print(email_message.status)  # See below

Email status descriptions

Each EmailMessage.status field can be equal to one of 10 possible values. For the value that reflect a GOV.UK Notify status, see https://docs.notifications.service.gov.uk/python.html#email-status-descriptions for details.

State                                         Description
sending-to-notify         The email is about to be sent to GOV.UK Notify (or has very recently been sent).
retrying-send-to-notify         The email has failed sending to GOV.UK Notify at least once and will be retried (or has very recently been retried).
failed-send-to-notify         The email has failed sending to GOV.UK Notify and will not be retried.
sent-to-notify         The email has been sent to GOV.UK Notify
notify-created         GOV.UK notify reports the email in the created state.
notify-sending         GOV.UK notify reports the email in the sending state.
notify-delivered         GOV.UK notify reports the email in the delivered state.
notify-temporary-failure         GOV.UK notify reports the email in the temporary-failure state. Note that this does not mean that the email will be retried automatically, but more reflects that if another identical email is sent, it may succeed.
notify-technical-failure         GOV.UK Notify reports the email in the technical-failure state, which indicates a technical issue between Notify and its email provider. It will not be retried automatically.
notify-permanent-failure         GOV.UK notify reports the email in the permanent-failure state, which indicates it is not likely to succeed if another identical email is sent.

Happy path

5 statuses make up the happy path when there are no problems sending an email:

stateDiagram-v2

    sendingToNotify: sending-to-notify
    sentToNotify: sent-to-notify
    notifyCreated: notify-created
    notifySending: notify-sending
    notifyDelivered: notify-delivered

    [*] --> sendingToNotify
    sendingToNotify --> sentToNotify
    sentToNotify --> notifyCreated
    notifyCreated --> notifySending
    notifySending --> notifyDelivered
    notifyDelivered --> [*]

Happy and unhappy paths

How EmailMessage.status can change in all cases of both success and failure is shown in the following diagram:

stateDiagram-v2

    sendingToNotify: sending-to-notify
    retryingSendToNotify: retrying-send-to-notify
    sentToNotify: sent-to-notify
    failedSendToNotify: failed-send-to-notify
    notifyCreated: notify-created
    notifySending: notify-sending
    notifyDelivered: notify-delivered
    notifyPermanentFailure: notify-permanent-failure
    notifyTemporaryFailure: notify-temporary-failure
    notifyTechnicalFailure: notify-technical-failure

    [*] --> sendingToNotify

    sendingToNotify --> retryingSendToNotify
    retryingSendToNotify --> failedSendToNotify
    sendingToNotify --> sentToNotify
    retryingSendToNotify --> sentToNotify

    failedSendToNotify --> [*]

    sentToNotify --> notifyCreated
    notifyCreated --> notifySending

    notifySending --> notifyDelivered
    notifySending --> notifyPermanentFailure
    notifySending --> notifyTemporaryFailure
    notifySending --> notifyTechnicalFailure

    notifyPermanentFailure --> [*]
    notifyTemporaryFailure --> [*]
    notifyTechnicalFailure --> [*]

    notifyDelivered --> [*]

Configuration

Configurations is via settings to go into settings.py

  • GOVUK_NOTIFY_API_KEY The GOV.UK Notify API key for the service

License

MIT

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_govuk_notify_outbox-0.2.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_govuk_notify_outbox-0.2.0-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file django_govuk_notify_outbox-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django_govuk_notify_outbox-0.2.0.tar.gz
Algorithm Hash digest
SHA256 18e48dc0fe734087bf06084c5602e5ec17b55dd84cd38a653de5b883eecc92fe
MD5 c2a4a859fc220e0534afe89df42339dc
BLAKE2b-256 d017e8ec9a77e2e18097cd4f6dde94dc16a332fa2ee3c214d348cacdb09cc14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_govuk_notify_outbox-0.2.0.tar.gz:

Publisher: release.yml on uktrade/django-govuk-notify-outbox

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_govuk_notify_outbox-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_govuk_notify_outbox-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a73271e6d0d0396438777f3b53c0bd6b153d7853a776f57a6aa9ce279e77bfde
MD5 9bd06d8f4850c1f2f66d66cc79eca685
BLAKE2b-256 6af979fc3db4cc2ca663a9a5954315cf00a5d92c5069c5f25beb1e1430b3a03b

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_govuk_notify_outbox-0.2.0-py3-none-any.whl:

Publisher: release.yml on uktrade/django-govuk-notify-outbox

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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