public function Message::setCopySender in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 121 - Contains \Drupal\contact\Entity\Message.
Class
- Message
- Defines the contact message entity.
Namespace
Drupal\contact\EntityCode
public function setCopySender($inform) {
$this
->set('copy', (bool) $inform);
}