public function Message::copySender in Drupal 10
Same name and namespace in other branches
- 8 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::copySender()
 - 9 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::copySender()
 
Returns TRUE if a copy should be sent to the sender.
Return value
bool TRUE if a copy should be sent, FALSE if not.
Overrides MessageInterface::copySender
File
- core/
modules/ contact/ src/ Entity/ Message.php, line 117  
Class
- Message
 - Defines the contact message entity.
 
Namespace
Drupal\contact\EntityCode
public function copySender() {
  return (bool) $this
    ->get('copy')->value;
}