Skip to main content

Creating a ‘Contact Us’ Form (E-Mail Version)

Creating a Simple ‘Contact Us’ Form in PHP (E-Mail Version)

This is a short follow-up of the last post Creating a Simple ‘Contact Us’ Form in PHP.

In the last post we discussed how we can create a simple contact form for our website. That surely will give visitors an easy way to contact you. But I guess many of you would be thinking that it’d have been better if contact form could just send emails. If you are one of them, keep reading!

To be true guys, PHP gives us a dead easy way of sending emails from scripts, thanks to the mail() function. mail() function in its simplest form has the following prototype:

bool mail(string tostring subjectstring msg, string headers);

Here,

  • to- email address, mail is to be sent to

  • subject- subject of the email

  • msg- body of the email

  • headers- For this argument a "From: <email@host.com>" string must be sent. it can be like "From: joesemail@yahoo.com" where the email can be any exisiting or non-existing email address. Email clients use this address for replying to incoming emails.

For our contact form, we’ll have to give our own (or whoever the webmaster is) email for the ‘to’ argument (since we should get the messages sent form the form), ‘subject’ can be anything better if related to the website the message is sent form and 'msg' can be the text we were storing in the file (see Creating a Simple ‘Contact Us’ Form in PHP). That’s it!

One more thing, it'd be good idea to set the "From" header string to the email of the user sending the messageso that they can be replied to just by pressing "Reply" when you get thier message.

It is obvious that from previous post Creating a Simple ‘Contact Us’ Form in PHP, only the PHP script needs rewriting to be able to send emails, here it is:

<?php
//define some constants
//storing the webmaster's email address
//to which the emails from the form
//will be sent to
define('WERBMASTER_EMAIL','YOUR_EMAIL');
define('SUBJECT','New Message From XYZ');

//fetch the information from
//the form elements
//we're using trim() function
//to TRIM whitespaces
$name=trim($_POST['name']);
$email=trim($_POST['email']);
$subject=trim($_POST['subject']);
$message=trim($_POST['message']);

//check whether all the (*) required 
//informations are filled or not
//show a message if not
if($name=='' || $email=='' || $message=='')
{
    echo 
"<h1>Error</h1>";
    echo 
"<p>One of the (*) required fields
     were missing. Please click the 'BACK' 
     button and re-send the form with all 
     the required infromations filled.</p>"
;

    
//exit script
    
exit;
}
//if OK

//format a string to be written to file
$data.="NAME: $name\n";
$data.="EMAIL: $email\n";
$data.="SUBJECT: $subject\n";
$data.="MESSAGE: $message\n";

//send the email message from the script
//using the mail() function
if(mail(WEBMASTER_EMAIL,SUBJECT,$data,"From: $email"))
{
    
//show message
    
echo "<h1>Successful</h1>";
    echo 
"<p>Message sent successfully!</p>";
}
else
{
    
//there is some problem in sending
    //the email. Most probably a server
    //error
    
echo "<h1>Server Error</h1>";
    echo 
"<p>Please try after sometime.</p>";
}
?>

The above script sends email to the webmaster whenever any visitor leaves a message from the ‘contact form’.

NOTE: This will only work if you have Mail Server installed and configured. So you can’t easily check its working on local server. Many of the free and almost all paid web hosts have Mail Servers configured though.

Related Articles:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

How to Create an HTML Form Linked with MySQL Database in PHP

If you're looking for example code and detailed discussion on how to create an HTML form that stores data in a MySQL database using PHP then this post might be what you're looking for. I assume that you're familiar with basic HTML, CSS, PHP coding, and  MySQL. I am going to divide this small project into two parts: The HTML form itself that takes input from the user and the PHP script that saves it into the database A table that displays the user-added data that has been saved in the database. We'll be dealing with the first part in this tutorial. Again I'd like to break this problem into a few parts so that it's easier for you to understand and probably gives you an insight into how breaking up a problem into smaller chunks can help make things clearer in your mind. Let's think about it, there is an HTML form (that is HTML code), then there is the PHP code that deals with the user-input data, and the MySQL database itself. For this tutorial, we'll b