I have been on this issue for a few days now with no result so this is my last resort.
I have created form in ez pages on my site. The direct link to the form is here http://www.sellhandmade.com.au/listing_request.txt Not sure if it'll work as my site is down for maintenance while I work on this.
I created a sendmail.php file as well and when I submit the form, it takes me to the thank you page (http://www.sellhandmade.com.au/listing_confirmation.htm) and I am able to receive the email but it is blank. The code for my sendmail.php for is as follows:
<?php
$sellernamec = $_REQUEST['sellername'] ;
$selleremail = $_REQUEST['selleremail'] ;
$sellerurl = $_REQUEST['sellerurl'];
$sellerlogo = $_REQUEST['sellerlogo'];
$itemtitle = $_REQUEST['itemtitle'];
$suggestedcategory = $_REQUEST['suggestedcategory'];
$itemprice = $_REQUEST['itemprice'];
$itemqty = $_REQUEST['itemqty'];
$itemdescription = $_REQUEST['itemdescription'];
$thumbnailimage = $_REQUEST['thumbnailimage'];
$mediumimage = $_REQUEST['mediumimage'];
$largeimage = $_REQUEST['largeimage'];
$feeoption = $_REQUEST['feeoption'];
$comment = $_REQUEST['comment'];
mail( "[email protected]", "Feedback Form Results",
$message, "From: $seller_email" );
header( "Location: http://www.sellhandmade.com.au/listing_confirmation.htm" );
?>
I have tried jsut about anything I found while googling this issue but nothing has done the trick. Eigther the whole thing is wrong or 1 little thing is wrong or missing.
I would appreciate any ideas, thank you.



