From 0b0f047fece6724872105bbaf1b64583f579e921 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Wed, 9 Aug 2023 09:36:19 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 14a769ec..2b0de6cc 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Django Post Office is a simple app to send and manage your emails in Django. Some awesome features are: +- Designed to scale, handles millions of emails efficiently - Allows you to send email asynchronously - Multi backend support - Supports HTML email @@ -12,8 +13,7 @@ Django. Some awesome features are: - Built in scheduling support - Works well with task queues like [RQ](http://python-rq.org) or [Celery](http://www.celeryproject.org) -- Uses multiprocessing (and threading) to send a large number of - emails in parallel +- Uses multiprocessing and threading to send a large number of emails in parallel ## Dependencies From 6857ed4ee5cd3306d2ae50290423227313d7c802 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sat, 21 Oct 2023 15:54:24 +0700 Subject: [PATCH 2/2] Use `django-admin` instead of `django-admin.py` to run tests --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b0de6cc..26e36230 100644 --- a/README.md +++ b/README.md @@ -668,7 +668,7 @@ Attachments are not supported with `mail.send_many()`. To run the test suite: ```python -`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=. +`which django-admin` test post_office --settings=post_office.test_settings --pythonpath=. ``` You can run the full test suite for all supported versions of Django and Python with: