diff --git a/src/TwilioChannel.php b/src/TwilioChannel.php index e5cc8f9..ba24b49 100755 --- a/src/TwilioChannel.php +++ b/src/TwilioChannel.php @@ -45,6 +45,10 @@ public function send($notifiable, Notification $notification) { try { $to = $this->getTo($notifiable, $notification); + + // Suppress notification if notifier address is found to be NULL + if($to === null) return; + $message = $notification->toTwilio($notifiable); $useSender = $this->canReceiveAlphanumericSender($notifiable);