Create Contact Form And Send Email using PHP

Create Contact Form And Send Email using PHP

In this Post We Will Explain About is Create Contact Form And Send Email using PHP With Example and Demo.Welcome on Pakainfo.com – Examples, The best For Learn web development Tutorials,Demo with Example! Hi Dear Friends here u can know to How to send email from contact form using PHPExample

In this post we will show you Best way to implement How to Simple PHP Mail Function Contact Us Page PHP Mail Script, hear for Email Form – Simple Form to Email PHP Contact Formwith Download .we will give you demo,Source Code and examples for implement Step By Step Good Luck!.

You will first of all make a simple contact form with 3 fields using PHP Like as a – Email address, Users Name, and messages. We will use a simple table to align the 3 simple fields and the Send simple button.make Contact Form And Send Email In PHP

First name:
Email address:
message:

make a new file and just paste the source code below in it.and then Save it as live_contact.php and upload it to your linux or xampp or wampp web server. and then, We have a simple PHP web page (http://www.Pakainfo.com/live_contact.php) with a simple data contact form on it.

 
Your simple email message was sent successfully!!
?>
<?php 
if ($_POST["email"]'') { 
    $email_to = '[email protected]'; 
    $subject_email = 'Live contact us Site contact form inquiry'; 
    $header_mail = "From: ".$_POST["email"]."\r\n"; 
    $header_mail .= "Reply-To: ".$_POST["email"]."\r\n"; 
    $header_mail .= "Content-type: text/html; charset=iso-8859-1\r\n"; 
    $email_body = "Good Name: ".$_POST["name"].""; 
    $email_body .= "Good Email: ".$_POST["email"].""; 
    $email_body .= "Good message: ".nl2br($_POST["message"]).""; 
    mail($email_to, $subject_email, $email_body, $header_mail) or die ("Failure"); 
?> 
Your simple email message was sent successfully!!
 
First name:
Email address:
message:

Example

I hope you have Got What is Creating a Simple Contact Form with PHP And how it works.I would Like to have FeadBack From My Blog(Pakainfo.com) readers.Your Valuable FeadBack,Any Question,or any Comments abaout This Article(Pakainfo.com) Are Most Always Welcome.

Leave a Comment