1 mail.test | public MailTestCase::format(array $message) |
Concatenate and wrap the email body for plain-text mails.
Overrides MailSystemInterface::format
See also
File
- core/
modules/ simpletest/ tests/ mail.test, line 58 - Test the Backdrop mailing system.
Class
- MailTestCase
- @file Test the Backdrop mailing system.
Code
public function format(array $message) {
// Join the body array into one string.
$message['body'] = implode("\n\n", $message['body']);
// Convert any HTML to plain-text and wrap the mail body for sending.
// Note that backdrop_html_to_text() already calls backdrop_wrap_mail(), so
// it is not necessary to call that explicitly again.
$message['body'] = backdrop_html_to_text($message['body']);
return $message;
}