You are here

public function Email::setBody in Courier 2.x

Same name and namespace in other branches
  1. 8 src/Entity/Email.php \Drupal\courier\Entity\Email::setBody()

Sets the email body.

Parameters

string $body: The email body.

Return value

\Drupal\courier\EmailInterface Returns email for chaining.

Overrides EmailInterface::setBody

2 calls to Email::setBody()
Email::applyTokens in src/Entity/Email.php
Applies tokens to relevant fields.
Email::importTemplate in src/Entity/Email.php
Import the message values from configuration values into this entity.

File

src/Entity/Email.php, line 96

Class

Email
Defines storage for a composed email.

Namespace

Drupal\courier\Entity

Code

public function setBody($body) {
  $this
    ->get('body')->value = $body;
  return $this;
}