You are here

function smtp_theme in SMTP Authentication Support 7.2

Implements hook_theme().

File

./smtp.module, line 122
Enables Drupal to send e-mail directly to an SMTP server.

Code

function smtp_theme($existing, $type, $theme, $path) {
  return array(
    'smtp_table' => array(
      'render element' => 'element',
      'file' => 'smtp.theme.inc',
    ),
    'smtp_selection_criteria' => array(
      'render element' => 'element',
      'file' => 'smtp.theme.inc',
    ),
  );
}