Search
Recommended Sites
Related Links






   

Informative Articles

5 Things Which Make Your Site Sticky
Your site's stickiness is its ability to retain visitors and bring them back again later. Here I point out 5 great sites which offer a free service to make your site sticky: 1. Moreover - http://w.moreover.com/ - Add stickiness to your site by...

HTML email greeting?
For those who want to be among the throng who are rushing to send out their greeting cards via every possible types of mail service, then online greeting it is. Although this is a wise choice, it is important to note that there are some...

Make Your Website Stand Out With an Icon Design
They may look like a standard image file, but to design an icon, one needs special icon design software capable of creating and saving an image in ICO format. There are many web design icon sites that, with a price, help you design your own...

The Secrets to Building a Successful Web Site
If you're doing business on the Internet, one of the most important aspects of your success is your web site. If your web site doesn't look professional, no matter what product you're offering, your chance of success will be minimal. Before you...

Top 10 Design Issues According To Web Marketing!
Top 10 Design Issues According To Web Marketing! By: Martin Lemieux When it comes to designing your site, there are 2 ways you can ultimately go. a) Designing for yourself and no one else, b) Designing to fit web marketing and customer attracting...

 
How to make a simple form mailer with PHP

As you may be well aware, displaying your e-mail address on your website can lead to e-mail harvesters picking up your address and adding it to hundreds or even thousands of lists used by spammers. If you want to allow your website visitors to contact you, but do not want to publicly display your e-mail address, then a form mailer may be exactly what you are looking for.

What is a form mailer? Quite simply, it is a form that you place on your website, that when filled in and submitted, sends you an e-mail with the contents. Below is an example of a simple form mailer written in PHP - feel free to change the information to that of your own website and make use of it:

[WRITE YOUR HTML HEADER HERE]

<?php

if ($_POST[t] == 'process'){

mail('webmaster@yoursite.tld','Your Site Contact Form Submission',stripslashes($_POST[message]),'FROM:'.$_POST[email]);

echo'<p>Thank you, your message was sent to the webmaster.</p>'."\n";

} else {

echo'<form action="'.$_SERVER[PHP_SELF].'" method="post">'."\n";
echo'<input type="hidden" name="t" value="process"></input>'."\n";

echo'Your E-Mail Address:<br /><input type="text" name="email" size="30" value=""></input><br /><br />'."\n";

echo'Your Message:<br /><textarea name="message" cols="30" rows="8"></textarea><br /><br />'."\n";

echo'<input type="submit" value="Send E-Mail"></input>'."\n";
echo'</form>';

}

?>

[WRITE YOUR HTML FOOTER HERE]

To clarify, copy and paste everything from [WRITE YOUR HTML HEADER HERE] to [WRITE YOUR HTML FOOTER HERE] into a text editor such as Notepad. Make your desired alterations. Save as a file with a .php extension (such as contact.php). Upload to your server and link to the file.

About the author:
Rupe Parnell is the founder and lead developer at Starsol.co.uk, a website development and management firm located in Norfolk, England. Rupe specialises in creating professional grade PHP scripts, a selection of which are available free at http://www.starsol.co.uk/scripts/