Metadata-Version: 2.1
Name: AX3-Email
Version: 1.0.7
Summary: A Django app to send emails using Huey tasks
Home-page: https://github.com/Axiacore/ax3-email-backend
Author: Axiacore, 
Author-email: info@axiacore.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: django (>=3.1.5)
Requires-Dist: huey (>=2.3.0)
Requires-Dist: premailer (>=3.7.0)

# AX3 Email

AX3 Email A Django app to send emails using Huey tasks

## Installation
AX3 Email is easy to install from the PyPI package:

```bash
$ pip install ax3-email
```

After installing the package, the project settings need to be configured.
add `ax3_email` to your `INSTALLED_APPS`

`INSTALLED_APPS += [ax3_email]`
## Configuration

Add email backend settings

```python 
# app/settings.py
EMAIL_BACKEND = 'ax3_email.backends.AX3EmailBackend'
AX3_EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # Django Email that does the actual sending // Optional - Default smtp (django)
AX3_RETRIES  # Maximum number of times to retry // Optional - Default 3
AX3_DELAY # Time in seconds between attempts // Optional - Default = 600
EMAIL_SUBJECT # Optional string format for all email subjects // example for prefix '[ax3_prefix] {} '
```


