Link to home
Start Free TrialLog in
Avatar of designmantras
designmantrasFlag for India

asked on

Mail format in php

sir i have using mail function,mail function do work properly but html tag not read and show the html code in mail please tell how this possible..........
.........PHP code
                        $name=$_POST["txt_name"];
                  $email=$_POST["txt_email"];
                  $mobile=$_POST["txt_contactno"];
                  $feed_back=$_POST["txt_feedback"];
                  $subject = "Dear Customer,";
                  
                  
                  $text3="With Best Wishes.";
                  $text4="http://www.insurancetimes.in";
                  $headers = "From:subscribe@insurancetimes.in" ."\r\n";
                  $message="<html>
                                          <body>
                                         <h2>Thank you for send feedback on InsuranceTimes.in</h2>
                                         <p>Your Name:</p><br />".$name."
                                         <p>Your Email:</p><br />".$email."
                                          <p>Your Contact No.:</p><br />".$mobile."
                                        <p>Your Feed Back:</p><br />".$feed_back."
                                        <p>With Best Wishes.</p><br />
                                        <p>http://www.insurancetimes.in</p>
                                          </body>
                                       </html>";      

                  
                  mail($email,$subject,$message,$headers);
                  echo "Your mail successfully.";      
                  exit;      
                        }
                  }


Mail OUTPUT:


<html>
<body>
<h2>Thank you for send feedback on InsuranceTimes.in</h2>
<p>Your Name:</p><br />MANOJ
<p>Your Email:</p><br />manojpandey1988@gmail.com
<p>Your Contact No.:</p><br />9711350612
<p>Your Feed Back:</p><br />fine here!
<p>With Best Wishes.</p><br />
<p>http://www.insurancetimes.in</p>
</body>
</html>


ASKER CERTIFIED SOLUTION
Avatar of SadafRasheed
SadafRasheed
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hahaa. I think that's pretty conclusive :)