From 0f872af03a883ce1993ae90800c44bbdcc60e31b Mon Sep 17 00:00:00 2001 From: Nuno Santos Date: Thu, 27 Feb 2014 16:45:25 +0100 Subject: [PATCH] Fixed Celery link in "Emails with Celery". --- docs/customizing.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/customizing.rst b/docs/customizing.rst index ae5248cd..35a9a702 100644 --- a/docs/customizing.rst +++ b/docs/customizing.rst @@ -145,9 +145,9 @@ templates you can specify an email context processor with the Emails with Celery ------------------ -Sometimes it makes sense to send emails via a task queue, such as -`Celery`_. To delay the sending of emails you can -use the ``@security.send_mail_task`` decorator like so:: +Sometimes it makes sense to send emails via a task queue, such as `Celery`_. +To delay the sending of emails you can use the ``@security.send_mail_task`` +decorator like so:: # Setup the task @celery.task @@ -160,3 +160,4 @@ use the ``@security.send_mail_task`` decorator like so:: def delay_security_email(msg): send_security_email.delay(msg) +.. _Celery: http://www.celeryproject.org/