Skip to content

Email Backend

Path: issues.backends.email.Backend

The email backend sends issue details via email to specified recipients.

Note

Ensure that Django's email settings are configured correctly in your project.

Options:

  • RECIPIENTS: A list of email addresses to which the issue ticket will be sent.

  • SENDER: The email address from which the issue ticket will be sent.

Example:

# settings.py

ISSUES = {
    "BACKEND": "issues.backends.email.Backend",
    "OPTIONS": {
        "RECIPIENTS": ["dev@example.com", "support@example.com"],
        "SENDER": "do-not-replya@exampel.com"
    }
}