You are here

function smtp_help in SMTP Authentication Support 7

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

Implements hook_help().

File

./smtp.module, line 37
Enables Drupal to send e-mail directly to an SMTP server.

Code

function smtp_help($path, $arg) {
  switch ($path) {
    case 'admin/help#smtp':
      return t('Allow for site emails to be sent through an SMTP server of your choice.');
  }
}