You are here

public function HTMLMailMime::getHtmlBody in HTML Mail 8

Same name and namespace in other branches
  1. 8.3 src/Utility/HtmlMailMime.php \Drupal\htmlmail\Utility\HtmlMailMime::getHtmlBody()

Returns the text/html message part.

Return value

string|null The text/html message part, or NULL if it has not been set.

File

src/Utility/HTMLMailMime.php, line 700
Provides the MailMIME class for creating MIME-formatted email messages.

Class

HTMLMailMime
Class HTMLMailMime.

Namespace

Drupal\htmlmail\Utility

Code

public function getHtmlBody() {
  return parent::getHTMLBody();
}