You are here

function htmlmail_help in HTML Mail 6

Same name and namespace in other branches
  1. 8.3 htmlmail.module \htmlmail_help()
  2. 8 htmlmail.module \htmlmail_help()
  3. 8.2 htmlmail.module \htmlmail_help()
  4. 5 htmlmail.module \htmlmail_help()
  5. 6.2 htmlmail.module \htmlmail_help()
  6. 7.2 htmlmail.module \htmlmail_help()
  7. 7 htmlmail.module \htmlmail_help()

Implementation of 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 e-mail that are not available with plain text. All system emails are effected if this module is enabled.") . '</p>';
      return $output;
  }
}