300x250 AD TOP

Text Widget

Total Pageviews

9,550

Subscribe us

Contact Us

Name

Email *

Message *

Powered by Blogger.

You can also receive Free Email Updates:

Popular Posts

Followers

Saturday, 31 March 2012

Tagged under: , , ,

Sending email using PHP...(PHPMailer)

Sending email using PHP...(PHPMailer)
Sending emails using PHP is an easy task...Just a few steps and you are through!!Step I: Download PHPMailerThe very first thing that needs to be done is, downloading the PHPMailer package. This package contains all the methods for sending simple mails, to sending mails with attachments!!You can download the package from: PHPMailerStep II: Starting to CodeCreate a new php file test.php and copy the following code:(Note: test.php file should be in the same folder as the extracted PHPMailer package) <?php require("class.phpmailer.php"); //You need to include the PHPMailer class $mailer = new PHPMailer(); //Create an...
Pages (9)1234567 »