File: /home/roshanchandy/public_html/smtp/testmail.php
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "roshanchandy.com";
$mail->SMTPAuth = true;
//$mail->SMTPSecure = "ssl";
$mail->Port = 587;
$mail->Username = "testsmtp@roshanchandy.com";
$mail->Password = "2@@1TesT1@";
$mail->From = "testsmtp@roshanchandy.com";
$mail->FromName = "Test Mail from Support";
$mail->AddAddress("mailhostingserver@gmail.com");
//$mail->AddReplyTo("mail@mail.com");
$mail->IsHTML(true);
$mail->Subject = "Test message from server";
$mail->Body = "<b><centre>Test email via SMTP script!</centre></b>";
//$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
// The values to be changed are :
$mail->Host = "ecowin.in"; -----------> SMTP server
$mail->Username = "test@ecowin.in"; -----------> Username
$mail->Password = "*********"; -----------> Password
$mail->Port = 587; -----------> 25 / 587
$mail->From = "info@ecowin.in"; -----------> From address required //