You are here

public function SmsMessage::addRecipients in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::addRecipients()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::addRecipients()
Same name and namespace in other branches
  1. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::addRecipients()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::addRecipients()

Adds multiple recipients to the SMS message.

Parameters

array $recipients: An array of recipients to add.

Return value

$this The called SMS message object.

Overrides SmsMessageInterface::addRecipients

File

src/Entity/SmsMessage.php, line 86

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function addRecipients(array $recipients) {
  foreach ($recipients as $recipient) {
    $this
      ->addRecipient($recipient);
  }
  return $this;
}