AX3 Email is a Django application designed to send emails using Huey tasks.
Project description
AX3 Email
AX3 Email is a Django application designed to send emails using Huey tasks.
Installation
You can easily install AX3 Email from the PyPI package using the following command:
pip install ax3-email
After the package is installed, you need to configure your project settings. Specifically, you need to add ax3_email
to your INSTALLED_APPS
:
INSTALLED_APPS += ['ax3_email']
Configuration
Next, you need to add the email backend settings. Here's how you can do it:
# app/settings.py
EMAIL_BACKEND = 'ax3_email.backends.AX3EmailBackend'
You can also specify additional settings for AX3 Email:
# app/settings.py
AX3_EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # Optional - Default is smtp (django). This is the Django Email that actually sends the emails.
AX3_EMAIL_RETRIES # Optional - Default is 3. This is the maximum number of times to retry sending an email.
AX3_EMAIL_DELAY # Optional - Default is 600. This is the time in seconds between attempts to send an email.
AX3_EMAIL_BACKUP_LIST # Optional - This is a list of emails to send a BCC backup copy of each email.
AX3_ONLY_BACKUP_LIST # Optional - If set to True, emails will only be sent to the backup list.
EMAIL_SUBJECT # Optional - This is a string format for all email subjects. For example, you can use '[ax3_prefix] {} ' as a prefix.
Publish package
To build the package, you need to run the following command:
rye build && rye publish
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ax3_email-2.0.0.tar.gz
.
File metadata
- Download URL: ax3_email-2.0.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dd6fcd94590e17a00f2dadc12a9db5c67de7a83de8199b492b6b2ad8664b613 |
|
MD5 | 1bac23be58f757d94009950bbc834c5a |
|
BLAKE2b-256 | 5971217ae460e869ce8af1f15b4251d3dc891e0756eda03533054ff09e23288b |
File details
Details for the file ax3_email-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: ax3_email-2.0.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23e090f04b519ee3fb01e3b40c3b70e39ef44275037908717b2b9d2add9c2922 |
|
MD5 | 24e264295389cc06928d166ee3d04c1f |
|
BLAKE2b-256 | 04e62cac886fb2f93dfd22580215e7292b053ba6a06b6252a66b676a6cf35e71 |