function htmlmail_theme in HTML Mail 7
Same name and namespace in other branches
- 8.3 htmlmail.module \htmlmail_theme()
- 8 htmlmail.module \htmlmail_theme()
- 8.2 htmlmail.module \htmlmail_theme()
- 6.2 htmlmail.module \htmlmail_theme()
- 6 htmlmail.module \htmlmail_theme()
- 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',
),
);
}