|
RETURN TO SEO ARTICLES INDEX
Killer Flow SEO Library
1000 Free Articles
Link to this page
<a href="http://www.killerflow.com/articles/index.html">Killer Flow SEO Library
<br />
1000 Free Articles
</a> |
|
How to make a simple form mailer with PHP
by: Rupe Parnell
{{flow}}
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]
if ($_POST[t] == 'process'){
mail('webmaster@yoursite.tld','Your Site Contact Form Submission',stripslashes($_POST[message]),'FROM:'.$_POST[email]);
echo'Thank you, your message was sent to the webmaster. '."n";
} else {
echo'';
}
?>
[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.
|
| 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 Starsol Scripts. |
{{/flow}}
Return To SEO Articles Index
|