You are here

function amazon_ses_enabled in Amazon SES 6

Determine if Amazon SES is used to deliver e-mails.

1 call to amazon_ses_enabled()
amazon_ses.module in ./amazon_ses.module
Enables Drupal to send email directly through Amazon SES.

File

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

Code

function amazon_ses_enabled() {
  return strpos(variable_get('smtp_library', ''), 'amazon_ses');
}