public function ContactForm::setRecipients in Drupal 9
Same name and namespace in other branches
- 8 core/modules/contact/src/Entity/ContactForm.php \Drupal\contact\Entity\ContactForm::setRecipients()
- 10 core/modules/contact/src/Entity/ContactForm.php \Drupal\contact\Entity\ContactForm::setRecipients()
Sets list of recipient email addresses.
Parameters
array $recipients: The desired list of email addresses of this category.
Return value
$this
Overrides ContactFormInterface::setRecipients
File
- core/
modules/ contact/ src/ Entity/ ContactForm.php, line 131
Class
- ContactForm
- Defines the contact form entity.
Namespace
Drupal\contact\EntityCode
public function setRecipients($recipients) {
$this->recipients = $recipients;
return $this;
}