require_once('PHPMailer/class.phpmailer.php');
$mail = new PHPMailer();
$mail->CharSet = "utf-8";
$mail->IsHTML(true);
$mail->IsSMTP();
#$mail->SMTPAuth = true; // enable SMTP authentication
#$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
#$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Host = "73.125.130.108"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "xxxx"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
$mail->FromName = "Test..."; // set from Name
$mail->Subject = "Test...";