You are here

function mandrill_help in Mandrill 8

Same name and namespace in other branches
  1. 6 mandrill.module \mandrill_help()
  2. 7.2 mandrill.module \mandrill_help()
  3. 7 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) {
  $output = '';
  switch ($path) {
    case 'admin/help#mandrill':
      $output = t('Allow for site emails to be sent through Mandrill.');
  }
  return $output;
}