We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f280e3 commit e7e72a7Copy full SHA for e7e72a7
src/Loggable.php
@@ -94,7 +94,7 @@ private function getFilteredNotificationRecipients()
94
95
$recipients = $this->getNotificationRecipients();
96
foreach ($recipients as $recipient) {
97
- if (!empty($recipient['address']) && filter_var($recipient['address'], FILTER_VALIDATE_EMAIL)) {
+ if (!empty($recipient['address']) && is_email($recipient['address'])) {
98
$result[] = $recipient;
99
}
100
0 commit comments