Skip to main content

Email backend for Django. Preview your email in browser instead of sending it.

Project description

django-naomi
===========

Django-naomi is a email backend for Django that let you preview email from your web browser instead of sending it using SMTP server. This is perfect for development environment that lack of SMTP server or you want to debug the email message. This library is inspired from [Letter Opener][letter-opener].

Django Setup
------------

First, install django-naomi by using pip. You can add `django-naomi` to your requirements file or run this command.

```bash
pip install django-naomi
```

Then, add `naomi` to your `INSTALLED_APPS` on your django settings file.

```python
INSTALLED_APPS += 'naomi'
```

Lastly, change the Django email backend and set the temporary directory.

```python
EMAIL_BACKEND = "naomi.mail.backends.naomi.NaomiBackend"
EMAIL_FILE_PATH = "/home/test/tmp"
```

Please make sure that the `EMAIL_FILE_PATH` directory is writeable. That's all you need to do. Now, every time you send email it will shown on your web browser.

Development and Feedback
------------------------
Questions or problems? Please use the issue tracker. If you would like to contribute to this project, fork this repository and send me a pull request.

[letter-opener]: https://github.com/ryanb/letter_opener

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-naomi-0.1.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

django_naomi-0.1.1-py2.py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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