Hi
I have a form that is a contact page from a flash page. It is all working except that the email I receive shows html and therefore looks a mess. any ideas what i can do to fix this?
Appreciate any help at all.
many thanks
Tina
I have included what the email comes to me looking like then the php code beneath it.
[php]
c
t
c
c
From: <
>Reply-To:
Return-path: MIME-Version: 1.0
Content-Type: text/html; charset=ISO-8859-1
the php code is as follows:
<?php $sendTo = "[email protected]"; $subject = "I have some music to sell "; $headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">\r\n"; $headers .= "Reply-To: " . $_POST["email"] . "\r\n"; $headers .= "Return-path: " . $_POST["email"]; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $phone = $_POST["phone"]."\r\n"; $name = $_POST["name"]."\r\n"; $format = $_POST["format"]."\r\n"; $quantity = $_POST["quantity"]."\r\n"; $title = $_POST["title"]."\r\n"; $message = $phone. $name. $format. $quantity. $title; mail($sendTo, $subject, $headers, $message ); ?>[/php]