You are here

function variable_email_variable_type_info in Variable Email 7

Implements hook_variable_type_info().

File

./variable_email.variable.inc, line 10
Variable Email module hook implementations

Code

function variable_email_variable_type_info() {
  $type['mail_html'] = array(
    'title' => t('Mail HTML'),
    'multiple' => array(
      'subject' => t('Subject'),
      'body' => t('Body'),
    ),
    'build callback' => 'variable_email_build_mail_html',
    'localize' => TRUE,
    'type' => 'multiple',
  );
  return $type;
}