You are here

function mandrill_process_async in Mandrill 7.2

Same name and namespace in other branches
  1. 8 mandrill.module \mandrill_process_async()
  2. 7 mandrill.module \mandrill_process_async()

Determine if mail should be processed asynchronously.

Return value

bool True if asyncronous processing is enabled

2 calls to mandrill_process_async()
MandrillMailSystem::mail in lib/mandrill.mail.inc
Send the email message.
mandrill_admin_settings in ./mandrill.admin.inc
Administrative settings.
1 string reference to 'mandrill_process_async'
mandrill_uninstall in ./mandrill.install
Implements hook_uninstall().

File

./mandrill.module, line 691
Enables Drupal to send email directly through Mandrill.

Code

function mandrill_process_async() {
  return variable_get('mandrill_process_async', FALSE);
}