You are here

function mandrill_help in Mandrill 7

Same name and namespace in other branches
  1. 8 mandrill.module \mandrill_help()
  2. 6 mandrill.module \mandrill_help()
  3. 7.2 mandrill.module \mandrill_help()

Implements hook_help().

File

./mandrill.module, line 20
Enables Drupal to send email directly through Mandrill.

Code

function mandrill_help($path, $arg) {
  switch ($path) {
    case 'admin/help#mandrill':
      return t('Allow for site emails to be sent through Mandrill.');
  }
}