From a46c65dfeb23af48ea380d6cd8de7fa5ad56eae7 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 13 Aug 2022 00:09:45 +1000 Subject: [PATCH] docs: Fix a few typos (#410) There are small typos in: - README.md Fixes: - Should read `tasks` rather than `taks`. - Should read `language` rather than `languange`. - Should read `browsable` rather than `browseable`. Signed-off-by: Tim Gates Signed-off-by: Tim Gates --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b9cae92f..b498f20c 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ indonesian_template = template.translated_templates.create( ) ``` -Sending an email using template in a non default languange is similarly easy: +Sending an email using template in a non default language is similarly easy: ```python mail.send( @@ -503,7 +503,7 @@ POST_OFFICE = { ### Log Level -Logs are stored in the database and is browseable via Django admin. +Logs are stored in the database and is browsable via Django admin. The default log level is 2 (logs both successful and failed deliveries) This behavior can be changed by setting `LOG_LEVEL`. @@ -741,10 +741,10 @@ app.conf.beat_schedule = { The email queue now will be processed every 10 minutes. If you are using [Django Celery Beat](https://django-celery-beat.readthedocs.io/en/latest/), -then use the Django-Admin backend and add a periodic taks for `post_office.tasks.send_queued_mail`. +then use the Django-Admin backend and add a periodic tasks for `post_office.tasks.send_queued_mail`. Depending on your policy, you may also want to remove expired emails from the queue. This can be -done by adding another periodic taks for `post_office.tasks.cleanup_mail`, which may run once a +done by adding another periodic tasks for `post_office.tasks.cleanup_mail`, which may run once a week or month.