You are here

function uc_file_action_order_email in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_file/uc_file.rules.inc \uc_file_action_order_email()
  2. 6.2 uc_file/uc_file.ca.inc \uc_file_action_order_email()

Send an email with order and file replacement tokens.

The recipients, subject, and message fields take order token replacements.

1 string reference to 'uc_file_action_order_email'
uc_file_rules_action_info in uc_file/uc_file.rules.inc
Implements hook_rules_action_info().

File

uc_file/uc_file.rules.inc, line 225
Rules hooks and functions for uc_file.module.

Code

function uc_file_action_order_email($order, $file_expiration, $from, $addresses, $subject, $message, $format) {
  $settings = array(
    'from' => $from,
    'addresses' => $addresses,
    'subject' => $subject,
    'message' => $message,
    'format' => $format,
  );

  // Token replacements for the subject and body.
  $settings['replacements'] = array(
    'uc_order' => $order,
    'uc_file' => $file_expiration,
  );

  // Replace tokens and parse recipients.
  $recipients = array();
  $addresses = token_replace($settings['addresses'], $settings['replacements']);
  foreach (explode("\n", $addresses) as $address) {
    $recipients[] = trim($address);
  }

  // Send to each recipient.
  foreach ($recipients as $email) {
    $sent = drupal_mail('uc_order', 'action-mail', $email, uc_store_mail_recipient_language($email), $settings, $settings['from']);
    if (!$sent['result']) {
      watchdog('uc_file', 'Attempt to e-mail @email concerning order @order_id failed.', array(
        '@email' => $email,
        '@order_id' => $order->order_id,
      ), WATCHDOG_ERROR);
    }
  }
}