| Current Path : /var/www/html/mmishra/iws8/html/backup/mcell/ |
| 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";
}
?>