function smtp_help in SMTP Authentication Support 6
Same name and namespace in other branches
- 8 smtp.module \smtp_help()
- 7.2 smtp.module \smtp_help()
- 7 smtp.module \smtp_help()
Implementation of hook_help().
File
- ./
smtp.module, line 23 - 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('Allows the sending of site e-mail through an SMTP server of your choice.');
}
}