Message::setCopySender

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);
}
doc_Drupal
2016-10-29 09:28:08
Comments
Leave a Comment

Please login to continue.