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