You are here

function htmlmail_theme in HTML Mail 7

Same name and namespace in other branches
  1. 8.3 htmlmail.module \htmlmail_theme()
  2. 8 htmlmail.module \htmlmail_theme()
  3. 8.2 htmlmail.module \htmlmail_theme()
  4. 6.2 htmlmail.module \htmlmail_theme()
  5. 6 htmlmail.module \htmlmail_theme()
  6. 7.2 htmlmail.module \htmlmail_theme()

Implements hook_theme().

2 string references to 'htmlmail_theme'
htmlmail_admin_settings in ./htmlmail.admin.inc
Implements hook_admin_settings().
htmlmail_get_selected_theme in ./htmlmail.module
Returns the selected theme to use for outgoing emails. for use in a theme callback function.

File

./htmlmail.module, line 70
Send system emails in HTML.

Code

function htmlmail_theme() {
  return array(
    'htmlmail' => array(
      'render element' => 'elements',
      'template' => 'htmlmail',
    ),
  );
}