function phpmailer_settings_form in PHPMailer 6
Same name and namespace in other branches
- 5.2 phpmailer.admin.inc \phpmailer_settings_form()
- 5 phpmailer.module \phpmailer_settings_form()
- 6.3 phpmailer.admin.inc \phpmailer_settings_form()
- 6.2 phpmailer.admin.inc \phpmailer_settings_form()
- 7.4 phpmailer.admin.inc \phpmailer_settings_form()
- 7.3 phpmailer.admin.inc \phpmailer_settings_form()
Form builder for both the Mime Mail hook and our own menu callback.
1 call to phpmailer_settings_form()
- phpmailer_mailengine in ./
phpmailer.module - Implementation of hook_mailengine().
1 string reference to 'phpmailer_settings_form'
- phpmailer_menu in ./
phpmailer.module - Implementation of hook_menu().
File
- ./
phpmailer.admin.inc, line 11 - Administrative functions for PHPMailer integration module.
Code
function phpmailer_settings_form() {
// Override the 'smtp_library' variable.
$smtp_library = variable_get('smtp_library', '');
if (variable_get('smtp_on', 0)) {
if (!strpos($smtp_library, 'phpmailer')) {
variable_set('smtp_library', drupal_get_filename('module', 'phpmailer'));
}
}
else {
if (strpos($smtp_library, 'phpmailer')) {
variable_del('smtp_library');
}
}
if (!variable_get('mimemail_alter', 0)) {
$form['smtp_on'] = array(
'#type' => 'checkbox',
'#title' => t('Use PHPMailer for sending all e-mails'),
'#default_value' => variable_get('smtp_on', 0),
'#description' => t('Use the PHPMailer module to deliver all site messages.'),
);
}
else {
$form['smtp_on'] = array(
'#type' => 'value',
'#value' => 0,
);
}
$form['server']['smtp_host'] = array(
'#type' => 'textfield',
'#title' => t('Primary SMTP server'),
'#default_value' => variable_get('smtp_host', 'localhost'),
'#description' => t('The host name or IP address of your primary SMTP server. Often just %localhost.', array(
'%localhost' => 'localhost',
)),
'#required' => TRUE,
);
$form['server']['smtp_hostbackup'] = array(
'#type' => 'textfield',
'#title' => t('Backup SMTP server'),
'#default_value' => variable_get('smtp_hostbackup', ''),
'#description' => t("The host name or IP address of your backup server, used when the primary server refuses connections. Optional."),
);
$form['server']['smtp_port'] = array(
'#type' => 'textfield',
'#title' => t('Default SMTP port'),
'#size' => 5,
'#maxlength' => 5,
'#default_value' => variable_get('smtp_port', '25'),
'#description' => t('The standard SMTP port is 25, for GMail enter 465 here and set the protocol to <em>TLS</em> below. You can override the default port by appending it to the host name separated with a colon. Example: %hostname', array(
'%hostname' => 'localhost:465',
)),
'#required' => TRUE,
);
$form['server']['smtp_protocol'] = array(
'#type' => 'select',
'#title' => t('Secure protocol'),
'#default_value' => variable_get('smtp_protocol', ''),
'#options' => array(
'' => t('No'),
'ssl://' => t('SSL'),
'tls://' => t('TLS'),
),
'#description' => t('Whether to use an encrypted connection when communicating with the mail server.'),
);
if (!function_exists('openssl_open')) {
$form['server']['smtp_protocol']['#default_value'] = '';
$form['server']['smtp_protocol']['#disabled'] = TRUE;
$form['server']['smtp_protocol']['#description'] .= ' ' . t("Note: This option has been disabled since your PHP installation doesn't seem to have support for OpenSSL.");
variable_set('smtp_protocol', '');
}
$form['smtp_fromname'] = array(
'#type' => 'textfield',
'#title' => t('"From" name'),
'#default_value' => variable_get('smtp_fromname', ''),
'#description' => t('Enter a name that should appear as the sender for all messages. If left blank the site name will be used instead: %sitename.', array(
'%sitename' => variable_get('site_name', 'Drupal'),
)),
);
$form['auth'] = array(
'#type' => 'fieldset',
'#title' => t('SMTP authentication'),
'#description' => t('Leave blank if your SMTP server does not require authentication.'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['auth']['smtp_username'] = array(
'#type' => 'textfield',
'#title' => t('Username'),
'#default_value' => variable_get('smtp_username', ''),
'#description' => t('For GMail, enter your username including "@gmail.com"'),
);
$form['auth']['smtp_password'] = array(
'#type' => 'textfield',
'#title' => t('Password'),
'#default_value' => variable_get('smtp_password', ''),
);
$form['advanced'] = array(
'#type' => 'fieldset',
'#title' => t('Advanced SMTP settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['advanced']['smtp_keepalive'] = array(
'#type' => 'checkbox',
'#title' => t('Keep connection alive'),
'#default_value' => variable_get('smtp_keepalive', 0),
'#description' => t('Whether to reuse an existing connection until the request ends. Can improve performance when sending lots of e-mails at once.'),
);
// @todo Capture output during send and put in a message.
$form['advanced']['smtp_debug'] = array(
'#type' => 'select',
'#title' => t('Debug level'),
'#default_value' => variable_get('smtp_debug', 0),
'#options' => array(
0 => t('Disabled'),
1 => t('Errors only'),
2 => t('Server responses'),
4 => t('Complete communication'),
),
'#description' => t("Debug the communication with the SMTP server. You normally shouldn't enable this unless you're seriously trying to debug e-mail sending problems."),
);
// If an address was given, send a test email message.
$test_address = variable_get('smtp_test_address', '');
if ($test_address != '') {
drupal_set_message(t('A test e-mail has been sent to %email. You may want to <a href="!watchdog">check the logs</a> for any error messages.', array(
'%email' => $test_address,
'!watchdog' => url('admin/reports/dblog'),
)));
drupal_mail('phpmailer', 'test', $test_address, NULL);
variable_del('smtp_test_address');
}
$form['test'] = array(
'#type' => 'fieldset',
'#title' => t('Test configuration'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['test']['smtp_test_address'] = array(
'#type' => 'textfield',
'#title' => t('Recipient'),
'#default_value' => '',
'#description' => t('Type in an address to have a test e-mail sent there.'),
);
if (!strpos(variable_get('smtp_library', ''), 'phpmailer') && module_exists('mimemail') && variable_get('mimemail_alter', 0)) {
$form['test']['preview'] = array(
'#type' => 'item',
'#title' => t('Preview'),
'#value' => t('For theming of HTML mails sent via Mime Mail, you can <a href="@preview-url" target="_blank">preview an example mail</a>.', array(
'@preview-url' => url('phpmailer/preview'),
)),
);
}
if (!module_exists('mimemail')) {
return system_settings_form($form);
}
return $form;
}