function smtp_menu in SMTP Authentication Support 6
Same name and namespace in other branches
- 5 smtp.module \smtp_menu()
- 7.2 smtp.module \smtp_menu()
- 7 smtp.module \smtp_menu()
Implementation of hook_menu().
File
- ./
smtp.module, line 35 - Enables Drupal to send e-mail directly to an SMTP server.
Code
function smtp_menu() {
$items['admin/settings/smtp'] = array(
'title' => 'SMTP Authentication Support',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'smtp_admin_settings',
),
'access arguments' => array(
'administer smtp module',
),
'description' => 'Allows the sending of site e-mail through an SMTP server of your choice.',
);
return $items;
}