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,