We have to process almost the same information via email several times a day for customers to get items repaired. I would like to reply to their email with a .htm page containing a fill in form, on form action it will send an email. I have the form and page created, all is almost working. Im having problems with the mailto syntax. What I would like is just the values of the fileds to print on the return mail with out the field names. Keep in mind this .htm page will be sent to them in an email so all they have to do is fill in the form, hit submit and it will create a new message to be sent. Any help will be appreciated. Here is what ive got: <html> <head> <body> <p> <strong>RMA Request Instructions:</strong><br /> To have products shipped to Smart Parts for repair you will need to have an RMA ( Return Mail Authorization ) number issued. To receive an RMA number please complete the following form: <form action="mailto:support@xxxxxxxxxxxxxx?subject=RMA REQUEST&body="FirstName".&body="LastName" etc...> <table> <tr> <td>First Name</td> <td><input type="text" name="FirstName"></td> </tr> <tr> <td>Last Name</td> <td><input type="text" name="LastName"></td> </tr> <tr> <td>Address</td> <td><input type="text" name="address"></td> </tr> <tr> <td>Address2</td> <td><input type="text" name="address2"></td> </tr> <tr> <td>City</td> <td><input type="text" name="city"></td> </tr> <tr> <td>State</td> <td><input type="text" name="state"></td> </tr> <tr> <td>Zip</td> <td><input type="text" name="zip"></td> </tr> <tr> <td>Serial Number</td> <td><input type="text" name="serial">for markers only</td> </tr> <tr> <td>Product Name</td> <td><select> <option value="">Select Product</option> <option value="Old Shocker">Old Shocker</option> <option value="03 Shocker">03 Shocker</option> <option value="Impulse">Impulse</option> <option value="MaxFlow">MaxFlow</option> <option value="Barrel">Barrel</option> <option value="Other Accessory">Other Accessory</option> <option value="Other Product">Other Product</option> </select></td> </tr> <tr> <td>Reason for return</td> <td><textarea rows=5 cols=60></textarea></td> </tr> <tr> <td><input type="submit"></td> </tr>