This post explains how to send mail using phpmailer class. With few steps we can integrate it into our website. The following script is for how sending mails using php code.
1) Download php classes from below url
2) Place in your application www/yourapplication/
those files are class.phpmailer.php and class.smtp.php
3) Now take a another php file to send the mails.
require(“class.phpmailer.php”);
require(“class.smtp.php”);
// including files in your send mail file.
$mail = new PHPMailer(); // create a object to that class.
$mail->IsMail();
$mail->Timeout = 360;
$mail->Subject = 'Test Subject';
$from = 'Anil Labs';
$mail->From = '[email protected]';
$mail->FromName = 'Anil Labs';
$mail->AddReplyTo('[email protected]', $from);
$to = '[email protected]';
$mail->AddAddress($to, '');
$mail->Body = “<html>;
<head>
<title></title>
</head>
<body>
Test Message
</body>
</html>";
$mail->IsHTML(true);
$mail->Send();
require(“class.smtp.php”);
// including files in your send mail file.
$mail = new PHPMailer(); // create a object to that class.
$mail->IsMail();
$mail->Timeout = 360;
$mail->Subject = 'Test Subject';
$from = 'Anil Labs';
$mail->From = '[email protected]';
$mail->FromName = 'Anil Labs';
$mail->AddReplyTo('[email protected]', $from);
$to = '[email protected]';
$mail->AddAddress($to, '');
$mail->Body = “<html>;
<head>
<title></title>
</head>
<body>
Test Message
</body>
</html>";
$mail->IsHTML(true);
$mail->Send();
Then it will sends the mail to particular email-id.






Hello !
It was a nice tutorial easy send an email. ThanQ.
( i am srinivas tamada brother )
Really nice & easy to use…
Pingback : How to add HTML content in php mail() function | ANIL KUMAR PANIGRAHI 's Blog
simple send
very good stuff, thanks .
thanks its awesome