Example #1
0
 /**
  * Sends a SMS message.
  *
  * @param \SimpleSoftwareIO\SMS\OutgoingMessage $message
  */
 public function send(OutgoingMessage $message)
 {
     foreach ($message->getTo() as $number) {
         $this->logger->notice("Sending SMS message to: {$number}");
     }
 }