mail_html_test.module
Same filename in other branches
Helper module for the html mail and url conversion tests.
File
-
core/
modules/ system/ tests/ modules/ mail_html_test/ mail_html_test.module
View source
<?php
/**
* @file
* Helper module for the html mail and url conversion tests.
*/
/**
* Implements hook_mail().
*/
function mail_html_test_mail($key, &$message, $params) {
switch ($key) {
case 'render_from_message_param':
$message['body'][] = \Drupal::service('renderer')->renderPlain($params['message']);
break;
}
}
Functions
Title | Deprecated | Summary |
---|---|---|
mail_html_test_mail | Implements hook_mail(). |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.