You are here

function amazon_ses_help in Amazon SES 6

Implementation of hook_help().

File

./amazon_ses.module, line 17
Enables Drupal to send email directly through Amazon SES.

Code

function amazon_ses_help($path, $arg) {
  switch ($path) {
    case 'admin/help#amazon_ses':
      return t('Allow for site emails to be sent through Amazon SES.');
  }
}