Let users post a filled in form to your mailadres from flash

How can I let my visitors post a filled in form from my flash MX site to my mailadres???
The form is already created, it works fine, but now i just need to be able to post it to my email…

Howdy…

Well… Since you mentioned that you have a working form, you have two options…

  1. Use default mailer program such as Outlook…
    You will be having the script like this on the submit button
getURL("mailto:me@mydomain.com?subject=" + subject.text + "&body=" + body.text);

and what it does is that this will bring up the new mailer program on the user’s screen where the user needs to press submit button AGAIN to actually send an email…

  1. User server side script to send an email…
    If your host support the power of the server side script, you can pass the user’s form field data to the script like PHP and have its own mail() function to send an email… This way your user doesn’t have to press the submit button twice and PHP will take care of all the sending process…

There should be several threads regarding this issue… Search the forum with the keyword like ‘mailto subject’ to get more information…