From 3fc6102519e3e6b5cb59ddf70180a6c40c06cff1 Mon Sep 17 00:00:00 2001 From: Victor Bocharsky Date: Sat, 1 Jun 2019 00:58:55 +0300 Subject: [PATCH] Fix a few minor misprints in Mailer article --- mailer.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailer.rst b/mailer.rst index 5e5534496cd..f802628db23 100644 --- a/mailer.rst +++ b/mailer.rst @@ -61,12 +61,12 @@ You'll now have a new line in your ``.env`` file that you can uncomment: .. code-block:: bash - # .env` + # .env SENDGRID_KEY= MAILER_DSN=smtp://$SENDGRID_KEY@sendgrid -The``MAILER_DSN`` isn't a *real* SMTP address: it's a simple format that offloads +The ``MAILER_DSN`` isn't a *real* SMTP address: it's a simple format that offloads most of the configuration work to mailer. The ``@sendgrid`` part of the address activates the SendGrid mailer library that you just installed, which knows all about how to deliver messages to SendGrid.