You are here

function smtp_help in SMTP Authentication Support 8

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

Implements hook_help().

File

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

Code

function smtp_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.smtp':
      return t('Allow for site emails to be sent through an SMTP server of your choice.');
  }
}