From 05bfeb3e032588f15947badc797ddffc0480c9ec Mon Sep 17 00:00:00 2001 From: Anders Melchiorsen Date: Fri, 28 Apr 2017 16:21:45 +0200 Subject: [PATCH] Allow multiple recipients for SMTP notify (#2516) * Allow multiple recipients for SMTP notify * Update notify.smtp.markdown Changed formatting and wording. --- source/_components/notify.smtp.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/_components/notify.smtp.markdown b/source/_components/notify.smtp.markdown index aa65fb72033..d5f33126c8a 100644 --- a/source/_components/notify.smtp.markdown +++ b/source/_components/notify.smtp.markdown @@ -35,7 +35,7 @@ Configuration variables: - **sender** (*Optional*): E-mail address of the sender. - **username** (*Optional*): Username for the SMTP account. - **password** (*Optional*): Password for the SMTP server that belongs to the given username. If the password contains a colon it need to be wrapped in apostrophes. -- **recipient** (*Required*): Recipient of the notification. +- **recipient** (*Required*): E-mail address of the recipient of the notification. This can be a recpient address or a list of addresses for multiple recipients. - **starttls** (*Optional*): Enables STARTTLS, eg. True or False. Defaults to False. - **debug** (*Optional*): Enables Debug, eg. True or False. Defaults to False. @@ -53,7 +53,9 @@ notify: starttls: true username: john@gmail.com password: thePassword - recipient: james@gmail.com + recipient: + - james@gmail.com + - bob@gmail.com ``` Keep in mind that Google has some extra layers of protection which need special attention (Hint: 'Less secure apps').