class ForwardMail in Forward 4.0.x
Same name and namespace in other branches
- 8.3 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail
- 8 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail
- 8.2 src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail
- 4.x src/Plugin/Mail/ForwardMail.php \Drupal\forward\Plugin\Mail\ForwardMail
Defines a custom mail interface so that Forward emails can be sent as HTML.
Plugin annotation
@Mail(
id = "forward_mail",
label = @Translation("Forward HTML mailer"),
description = @Translation("Sends the message as HTML, using PHP's native mail() function.")
)
Hierarchy
- class \Drupal\Core\Mail\Plugin\Mail\PhpMail implements MailInterface
- class \Drupal\forward\Plugin\Mail\ForwardMail
Expanded class hierarchy of ForwardMail
File
- src/
Plugin/ Mail/ ForwardMail.php, line 17
Namespace
Drupal\forward\Plugin\MailView source
class ForwardMail extends PhpMail {
/**
* Concatenates and wraps the email body for HTML mails.
*
* Unlike PHPMail, the message is not coverted to plain text by default.
*
* @param 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 array
* The formatted $message.
*/
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;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ForwardMail:: |
public | function |
Concatenates and wraps the email body for HTML mails. Overrides PhpMail:: |
|
PhpMail:: |
protected | property | The configuration factory. | |
PhpMail:: |
public | function |
Sends an email message. Overrides MailInterface:: |
2 |
PhpMail:: |
private | constant | A list of headers that can contain multiple email addresses. | |
PhpMail:: |
protected static | function | Disallows potentially unsafe shell characters. | |
PhpMail:: |
public | function | PhpMail constructor. |