You are here

function casetracker_mail_help in Case Tracker 5

Implementation of hook_help().

File

./casetracker_mail.module, line 11
Enables mail sending and Mailhandler integration for Case Tracker.

Code

function casetracker_mail_help($section) {
  switch ($section) {
    case 'admin/settings/casetracker_mail':
      return '<p>' . t('Configure the various Case Tracker mail options with these settings.') . '</p>';
  }
}