From 4a3b404edfbb45409b787028e63d6b2c92a7d1d6 Mon Sep 17 00:00:00 2001 From: Paul Bienkowski Date: Sat, 28 Nov 2020 19:18:45 +0100 Subject: [PATCH] chore: fix readme command example --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0538f7f..27bda2c 100644 --- a/README.md +++ b/README.md @@ -99,5 +99,8 @@ SMTP server need to be specified as environment variables: Full command example: - MAILSERVER=mail.example.com MAILSENDER=noreply@example.com MAILUSER=my_mail_login -MAILPW=hunter2 npm run dev -- --devSendMails +```bash +MAILSERVER=mail.example.com MAILSENDER=noreply@example.com \ + MAILUSER=my_mail_login MAILPW=hunter2 \ + npm run dev -- --devSendMails +```