Please use the documentation available with the PHPMailer component
(
http://phpmailer.sourceforge.net/ ) to integrate it with your website
forms.
The PHPMailer needs to be configured with the following options.
Mailer Type: SMTP
Server: localhost
Use Authentication: YES
Auth Username: FTP_Username_here (Web Control Panel user)
Auth Password: FTP_Password_here (Web Control Panel password)
Important Settings to be made in the "class.phpmailer.php" file:
var $Mailer = "smtp";
var $Host = "localhost";
var $Port = 25;
var $SMTPAuth = true;
var $Username = ""; // Put your FTP username between the quotes
var $Password = ""; // Put your FTP password between the quotes