function smtp_help in SMTP Authentication Support 7
Same name and namespace in other branches
- 8 smtp.module \smtp_help()
- 6 smtp.module \smtp_help()
- 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.');
}
}