function mandrill_help in Mandrill 7.2
Same name and namespace in other branches
- 8 mandrill.module \mandrill_help()
- 6 mandrill.module \mandrill_help()
- 7 mandrill.module \mandrill_help()
Implements hook_help().
File
- ./
mandrill.module, line 15 - 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;
}