How to Send Feedback form Information to email in tabular format using php

I already shared the concepts about customer feedback form. Now we will see how to send the feedback information to the particular email id in the format of table. If you can implement the tabular format information you can use the html tag inside the php tag. The below code is very helpful to send the feedback form information in the format of tabular.

This example works 100% . I hope this example will really helpful to the programmers to send the form information in the tabular format to the email. Here is the demo page. You can check the form here and you can't able to view the result here, so you will check in your server. Here is the option to download full code by clicking the below download button.






index.html

<html>
<head>
<title>Send Feedback Information in tabular format to mail</title>
</head>
<body>
<form name="contact-form1"  method="post" action="email_send.php">
<input type="text"  name="name" placeholder="Your Name.." required>
<input type="text"  name="email" placeholder="Your Email.."required >
<input type="text"  name="phone" placeholder="Your 10 digit Phone.."require pattern="[0-9]{10}">
<textarea  name="message" placeholder="Write something.." style="height:100px" required></textarea>
<input name="submit" type="submit" value="Submit" /><br>
</form>
</body>
</html>


email_send.php

<?php
if(isset($_POST['submit'])){
    $to = "admin@sanwebcorner.com";
    $from = "admin@sanwebcorner.com";
    $name = $_POST['name'];
$phone = $_POST['phone'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $subject = "New Enquiry From Website";
$msg.= "<table width='500' border='0' align='center' cellpadding='0' cellspacing='0' style='font-family:Arial, Helvetica, sans-serif; font-size:10pt; border:1px solid #ccc;'> ";
$msg.= "<tr>";
$msg.= "<td width='96' style='border:1px solid #ccc; padding:5px'>Name</td>";
$msg.= "<td height='25' style='border:1px solid #ccc; padding:5px'>$name</td>";
$msg.= "</tr>";
$msg.= "<tr>";
$msg.= "<td height='25' bgcolor='#F5F5F5'  style='border:1px solid #ccc; padding:5px'>Email Id </td>";
$msg.= "<td height='25' bgcolor='#F5F5F5'  style='border:1px solid #ccc; padding:5px'>$email</td>";
$msg.= "</tr>";
$msg.= "<tr>";
$msg.= "<td height='25'  style='border:1px solid #ccc; padding:5px'>Phone No</td>";
$msg.= "<td height='25'  style='border:1px solid #ccc; padding:5px'>$phone</td>";
$msg.= "</tr>";
$msg.= "<tr>";
$msg.= "<td height='95' style='border:1px solid #ccc; padding:5px'>Message</td>";
$msg.= "<td height='95' style='border:1px solid #ccc; padding:5px'>$message</td>";
$msg.= "</tr>";
$msg.= "</table>";              
$headers = "From: $name < admin@sanwebcorner.com >.";
$headers .= "\r\nContent-Type: text/html; charset=ISO-8859-1\r\n";
mail($to, $subject, $msg, $headers) ;
echo '<script>alert("Your Enquiry Received . We will contact you soon...");</script>';
echo '<script>location.href = "index.php"</script>';
    }
?>

Post a Comment

0 Comments