You are here

function uc_store_update_7004 in Ubercart 7.3

Installs HTML Mail System for Ubercart.

File

uc_store/uc_store.install, line 231
Install, update, and uninstall functions for the uc_store module.

Code

function uc_store_update_7004() {

  // Set mail handler for all Ubercart modules
  variable_set('mail_system', array_merge(variable_get('mail_system', array(
    'default-system' => 'DefaultMailSystem',
  )), array(
    'uc_cart' => 'UbercartMailSystem',
    'uc_order' => 'UbercartMailSystem',
    'uc_file' => 'UbercartMailSystem',
    'uc_roles' => 'UbercartMailSystem',
    'uc_stock' => 'UbercartMailSystem',
    'uc_store' => 'UbercartMailSystem',
  )));
}