ContactForm::setReply

public ContactForm::setReply($reply)

Sets an auto-reply message to send to the message author.

Parameters

string $reply: The desired reply.

Return value

$this

Overrides ContactFormInterface::setReply

File

core/modules/contact/src/Entity/ContactForm.php, line 167

Class

ContactForm
Defines the contact form entity.

Namespace

Drupal\contact\Entity

Code

public function setReply($reply) {
  $this->reply = $reply;
  return $this;
}
doc_Drupal
2016-10-29 08:56:22
Comments
Leave a Comment

Please login to continue.