Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cookbook/logging/monolog_email.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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',
),
Expand Down