function Message::setCopySender
Same name and namespace in other branches
- 8.9.x core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::setCopySender()
- 10 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::setCopySender()
- 11.x core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::setCopySender()
Sets if the sender should receive a copy of this email or not.
Parameters
bool $inform: TRUE if a copy should be sent, FALSE if not.
Overrides MessageInterface::setCopySender
File
-
core/
modules/ contact/ src/ Entity/ Message.php, line 124
Class
- Message
- Defines the contact message entity.
Namespace
Drupal\contact\EntityCode
public function setCopySender($inform) {
$this->set('copy', (bool) $inform);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.