1
Some Of the Hosting Provider after you set
Send mail
SMTP
SMTPAUT
Still cannot send email to u user maybe you can try to edit the (class.phpmailer.php)as below
/**
* Sets the From email address for the message.
* @access public
* @var string
*/
var $From = "admin@xxxxxxx.com";
/**
* Sets the From name of the message.
* @access public
* @var string
*/
var $FromName = "admin";
/**
* Sets the Sender email of the message. If not empty, will be sent via -f to sendmail
* or as 'MAIL FROM' in smtp mode.
* @access public
* @var string
*/
var $Sender = "admin@xxxxxxx.com";
/**
* Sets the Subject of the message.
* @access public
* @var string
*/
var $Subject = "";
/**
* Sets the Body of the message. This can be either an HTML or text body.
* If HTML then run IsHTML(true).
* @access public
* @var string
*/
var $Body = "";
/**
* Sets the text-only body of the message. This automatically sets the
* email to multipart/alternative. This body can be read by mail
* clients that do not have HTML email capability such as mutt. Clients
* that can read HTML will view the normal Body.
* @access public
* @var string
*/
var $AltBody = "";
/**
* Sets word wrapping on the body of the message to a given number of
* characters.
* @access public
* @var int
*/
var $WordWrap = 0;
/**
* Method to send mail: ("mail", "sendmail", or "smtp").
* @access public
* @var string
*/
var $Mailer = "mail";
/**
* Sets the path of the sendmail program.
* @access public
* @var string
*/
var $Sendmail = "/usr/sbin/sendmail";
/**
* Turns Microsoft mail client headers on and off. Useful mostly
* for older clients.
* @access public
* @var bool
*/
var $UseMSMailHeaders = false;
/**
* Path to phpmailer plugins. This is now only useful if the SMTP class
* is in a different directory than the PHP include path.
* @access public
* @var string
*/
var $PluginDir = "";
/**
* Holds phpmailer version.
* @access public
* @var string
*/
var $Version = "1.65";
/**
* Sets the email address that a reading confirmation will be sent.
* @access public
* @var string
*/
var $ConfirmReadingTo = "";
/**
* Sets the line endings of the message.
* @access public
* @var string
*/
var $LE = "\n";
/**
* Sets the hostname to use in Message-Id and Received headers
* and as default HELO string. If empty, the value returned
* by SERVER_NAME is used or 'localhost.localdomain'.
* @access public
* @var string
*/
var $Hostname = "";
/////////////////////////////////////////////////
// SMTP VARIABLES
/////////////////////////////////////////////////
/**
* Sets the SMTP hosts. All hosts must be separated by a
* semicolon. You can also specify a different port
* for each host by using this format: [hostname:port]
* (e.g. "smtp1.example.com:25;smtp2.example.com").
* Hosts will be tried in order.
* @access public
* @var string
*/
var $Host = "mail.xxxxxx.com";
/**
* Sets the default SMTP server port.
* @access public
* @var int
*/
var $Port = 25;
/**
* Sets the SMTP HELO of the message (Default is $Hostname).
* @access public
* @var string
*/
var $Helo = "";
/**
* Sets SMTP authentication. Utilizes the Username and Password variables.
* @access public
* @var bool
*/
var $SMTPAuth = false;
/**
* Sets SMTP username.
* @access public
* @var string
*/
var $Username = "admin@xxxxx.com";
/**
* Sets SMTP password.
* @access public
* @var string
*/
var $Password = "password";
/**
* Sets the SMTP server timeout in seconds. This function will not
* work with the win32 version.
* @access public
* @var int
*/
var $Timeout = 10;
HOPE ABOVE IS SOME SOLUTION.... IF YOU GUY STILL HAVE AND IDEA TO IMPROVE THE SOLUTION PLEASE LET ME KNOW