Skip to content

Commit

Permalink
Merge pull request #432
Browse files Browse the repository at this point in the history
* pr-432:
  Allow multiple recipient for Tracy email notifications
  • Loading branch information
TiSiE committed Nov 6, 2017
2 parents 5bb947c + 8204199 commit dd44464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/Core/src/Core/Service/Tracy.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function register(array $config)

$mailMessage = (new Message())
->addFrom("noreply@$host")
->addTo($email)
->addTo(array_map('trim', explode(',', $email)))
->setSubject("PHP: An error occurred on the server $host")
->setBody($mimeMessage);

Expand Down

0 comments on commit dd44464

Please sign in to comment.