<?php
/*
 * SMTP Configuration
 */
$g_phpMailer_method 	= PHPMAILER_METHOD_SMTP;
$g_smtp_host		= '<your_hostname_smtp>'; // Relative to your host
$g_smtp_auth_type	= 'NTLM';
$g_smtp_realm		= '<your_realm_smtp>'; // relative to your host
$g_smtp_username	= '<your_username_smtp>'; // relative to your host
$g_smtp_password	= '<your_password_smtp>'; // relative to your host
$g_smtp_port		= <you_port_number>; // relative to your host
$g_smtp_workstation	= '<your_workstation_name>'; // relative to your workstation and host

?>
