I have an FLA file that has forms with variables and stuff.
It also has a script to validate the forms are all filled in.
But umm…how do i make the button work?
How do i make this Email to "awarlock@bigfoot.com" when you click SUBMIT.
You’ll also need a server side script like PHP to send the info to your email. Run a search on form mail in this section or the MX section and you should find what you need.
All that does is it opens the user’s default email program and they will have to fill out the info on their email still. It’s not going to send the info on your form to you.
EDIT:
This is what you’re talking about, try it and you’ll see what I mean.[AS]on (release) {
getURL("mailto:youremail@email.com");
}
[/AS]
To send the info from your form, you’ll need a server side script.
it won’t sent the mail for you. It just opens up the users default e-mail program (usually outlook express) and it puts the variables into the e-mail. Its using getURL()