You are here

function smtp_variable_group_info in SMTP Authentication Support 7.2

Same name and namespace in other branches
  1. 7 smtp.variable.inc \smtp_variable_group_info()

Implements hook_variable_group_info().

File

./smtp.variable.inc, line 10
Custom integration with the Variable module.

Code

function smtp_variable_group_info() {
  $groups['smtp'] = array(
    'title' => t('SMTP Authentication Support'),
    'access' => 'administer smtp module',
    'description' => t('Configure SMTP server for site emails to be sent from different names.'),
  );
  return $groups;
}