From 0366d6e75b93e080d7fa95569c874f002ae65f19 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sat, 16 Aug 2014 12:12:23 -0400 Subject: [PATCH] [#3940] Adding php example for an array of emails --- cookbook/logging/monolog_email.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cookbook/logging/monolog_email.rst b/cookbook/logging/monolog_email.rst index 906d9a1c61f..9b6dee43540 100644 --- a/cookbook/logging/monolog_email.rst +++ b/cookbook/logging/monolog_email.rst @@ -29,7 +29,7 @@ it is broken down. from_email: error@example.com to_email: error@example.com # or list of recipients - # to_email: [developer_1@example.com, developer_2@example.com, ...] + # to_email: [dev1@example.com, dev2@example.com, ...] subject: An Error Occurred! level: debug @@ -82,6 +82,8 @@ it is broken down. 'type' => 'swift_mailer', 'from_email' => 'error@example.com', 'to_email' => 'error@example.com', + // or a list of recipients + // 'to_email' => array('dev1@example.com', 'dev2@example.com', ...), 'subject' => 'An Error Occurred!', 'level' => 'debug', ),