Metadata-Version: 2.1
Name: django-easy-email
Version: 1.0.0
Summary: A Django extension designed to streamline email management with powerful templates, scheduling, storage, and more.
Home-page: https://github.com/farhad0085/django-easy-email
Author: Farhad Hossain
Author-email: farhadhossain0085@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=3.2
Requires-Dist: filetype>=1.2.0

# Django Easy Email
A Django extension designed to streamline email management with powerful templates, scheduling, storage, and more.

## Features
- Email scheduling
- Ability to store email template in database level
- Email sending logs
- Works with any third party storage backend

## Documentation
- [Installation](https://django-easy-email.readthedocs.io/en/latest/installation/)
- [Usage](https://django-easy-email.readthedocs.io/en/latest/usage/)
- [Settings](https://django-easy-email.readthedocs.io/en/latest/settings/)
- [API Reference](https://django-easy-email.readthedocs.io/en/latest/api_reference/)

## Important!
### Windows Users
In windows, to run celery, you should use `gevent` along with celery, otherwise celery tasks will not evaluate.

- Use following command to install `gevent`
```sh
pip install gevent
```

- Then to run celery worker, run following:
```sh
celery -A project_name worker -l info -P gevent
```
