You are here

function phpmailer_settings in PHPMailer 5.2

Menu callback to render the settings page.

1 string reference to 'phpmailer_settings'
phpmailer_menu in ./phpmailer.module
Implementation of hook_menu().

File

./phpmailer.module, line 163
Integrates the PHPMailer library for SMTP e-mail delivery.

Code

function phpmailer_settings() {
  require_once drupal_get_path('module', 'phpmailer') . '/phpmailer.admin.inc';
  return phpmailer_settings_form();
}