This form works but using system-registered email client To make this form send message without email client you should put something else in the action attribute of the form. Some formmail or etc
Sorry, I should have looked at your source. I'm not positive on how you'd do it with flash. I'm assuming that you'd do something like (please forgive my ignorance of flash) on event or on click of the submit button it would then load, say, mail.php and accept the content and verify it. Again, I apologize. Should've looked at the source first.
Mate, try 123ContactForm.com. It's very easy to make your form, you don't have to know any programming, just put the final HTML code on your website.. And yes, it's free.
I would use a PHP form that the form submits too. Here is an example that woudl email the lead to your email that I wrote and use on my sites. <?php $txtname = $_POST['txtname']; $txtemail = $_POST['txtemail']; $txtmessage = $_POST['txtmessage']; $message = ' Name: '.$txtname. ' Email: '.$txtemail. ' Message: '.$txtmessage; mail( "your@email.com", "New Message For Your Company", $message, "From: ".$txtemail ); header('Location: http://www.yourwebsite.com/thanks.html'); ?> Code (markup):