From c893d1b6ca9dd39a596e68e5059b3522872dd84d Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 12 Jul 2019 12:59:03 +0200 Subject: [PATCH] Update EmailNotification.php --- src/Notifications/EmailNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notifications/EmailNotification.php b/src/Notifications/EmailNotification.php index c725ad053..e3112e5a9 100644 --- a/src/Notifications/EmailNotification.php +++ b/src/Notifications/EmailNotification.php @@ -223,7 +223,7 @@ class EmailNotification extends Notification return; } - $list = explode($value, ';'); + $list = explode(';', $value); foreach ($list as $element) { $this->receivers[] = [ 'email' => $element,