You are here

function htmlmail_help in HTML Mail 7.2

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. 6 htmlmail.module \htmlmail_help()
  7. 7 htmlmail.module \htmlmail_help()

Implements hook_help().

File

./htmlmail.module, line 32
Sends system emails in HTML.

Code

function htmlmail_help($path, $arg) {
  switch ($path) {
    case 'admin/config/system/htmlmail':
      return '<h2>' . t('Theming') . '</h2><p>' . t('The email message goes through three transformations before sending:') . '</p>';
    case 'admin/help#htmlmail':
      return '<p>' . t('<a href="!htmlmail">HTML Mail</a> lets you theme your messages the same way you theme the rest of your website.', array(
        '!htmlmail' => 'https://www.drupal.org/project/htmlmail',
      )) . '</p>';
    default:
      return '';
  }
}