You are here

public function Email::setBodyFormat in Courier 2.x

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

Sets the email body format.

Parameters

string $format: The email body format.

Return value

\Drupal\courier\EmailInterface Returns email for chaining.

Overrides EmailInterface::setBodyFormat

File

src/Entity/Email.php, line 111

Class

Email
Defines storage for a composed email.

Namespace

Drupal\courier\Entity

Code

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