public Message::setCopySender($inform)
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 116
Class
- Message
- Defines the contact message entity.
Namespace
Drupal\contact\Entity
Code
public function setCopySender($inform) { $this->set('copy', (bool) $inform); }
Please login to continue.