Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8/html/backup/mcell/
Upload File :
Current File : /var/www/html/mmishra/iws8/html/backup/mcell/mail.php

<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "mail.local"; // SMTP server
$mail->From = "mmishra@iiita.ac.in";
$mail->AddAddress("mmishra@iiita.ac.in");

$mail->Subject = "first mailing";
$mail->Body = "hi ! \n\n this is First mailing I made myself with PHPMailer !";
$mail->WordWrap = 50;

if(!$mail->Send())
{
   echo "Message was not sent";
   echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
   echo "Message has been sent";
}

?>