public function HTMLMailMime::getTxtBody in HTML Mail 8
Same name and namespace in other branches
- 8.3 src/Utility/HtmlMailMime.php \Drupal\htmlmail\Utility\HtmlMailMime::getTxtBody()
Returns the text/plain message part.
Return value
string|null The text/plain message part, or NULL if it has not been set.
File
- src/
Utility/ HTMLMailMime.php, line 710 - Provides the MailMIME class for creating MIME-formatted email messages.
Class
- HTMLMailMime
- Class HTMLMailMime.
Namespace
Drupal\htmlmail\UtilityCode
public function getTxtBody() {
return parent::getTXTBody();
}