public function SmsMessage::addRecipients in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::addRecipients()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::addRecipients()
Same name and namespace in other branches
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::addRecipients()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\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
1 call to SmsMessage::addRecipients()
- SmsMessage::__construct in src/
Message/ SmsMessage.php - Creates a new instance of an SMS message.
File
- src/
Message/ SmsMessage.php, line 181
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function addRecipients(array $recipients) {
foreach ($recipients as $recipient) {
$this
->addRecipient($recipient);
}
return $this;
}