function htmlmail_help in HTML Mail 7
Same name and namespace in other branches
- 8.3 htmlmail.module \htmlmail_help()
- 8 htmlmail.module \htmlmail_help()
- 8.2 htmlmail.module \htmlmail_help()
- 5 htmlmail.module \htmlmail_help()
- 6.2 htmlmail.module \htmlmail_help()
- 6 htmlmail.module \htmlmail_help()
- 7.2 htmlmail.module \htmlmail_help()
Implements hook_help().
File
- ./
htmlmail.module, line 11 - Send system emails in HTML.
Code
function htmlmail_help($path, $arg) {
switch ($path) {
case 'admin/help#htmlmail':
case 'admin/settings/htmlmail':
$output = '<p>' . t("HTML Mail provides formatting and semantic markup capabilities in email that are not available with plain text.") . '</p>';
return $output;
}
}