You are here

function smtp_menu in SMTP Authentication Support 7

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

Implements hook_menu().

File

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

Code

function smtp_menu() {
  $items['admin/config/system/smtp'] = array(
    'title' => 'SMTP Authentication Support',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'smtp_admin_settings',
    ),
    'access arguments' => array(
      'administer smtp module',
    ),
    'description' => 'Allow for site emails to be sent through an SMTP server of your choice.',
    'file' => 'smtp.admin.inc',
  );
  return $items;
}