You are here

public function ForwardMail::format in Forward 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail::format()
  2. 8 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail::format()
  3. 8.2 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail::format()
  4. 4.0.x src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail::format()

Concatenates and wraps the email body for HTML mails.

Unlike PHPMail, the message is not coverted to plain text by default.

Parameters

array $message: A message array, as described in hook_mail_alter(). If the 'params' subarray defines a 'plain_text' key with a TRUE value, the message will be converted from HTML into plain text before sending.

Return value

array The formatted $message.

Overrides PhpMail::format

File

src/Plugin/Mail/ForwardMail.php, line 32

Class

ForwardMail
Defines a custom mail interface so that Forward emails can be sent as HTML.

Namespace

Drupal\forward\Plugin\Mail

Code

public function format(array $message) {

  // Join the body array into one string.
  $message['body'] = implode("\n\n", $message['body']);
  if (!empty($message['params']['plain_text'])) {
    $message['body'] = MailFormatHelper::htmlToText($message['body']);
    $message['body'] = MailFormatHelper::wrapMail($message['body']);
  }
  return $message;
}