My web host has a system that does formail for me and said to put this in my submit button
To use Formmail, you need to create a form on one of your web pages.
The form action line should be
<FORM ACTION = "/cgi-sys/formmail.pl" METHOD = "POST">
formmail.pl will do all the programming work for you. You alter the behavior of Formmail by using hidden fields in your form.
There is only one form field that you must have in your form for FormMail to work correctly. This is the recipient field.
Field: recipient
Description: This form field allows you to specify to whom you wish for your form results to be mailed. Most likely you will want to configure this option as a hidden form field with a value equal to that of your e-mail address.
Syntax:
<input type=hidden name="recipient" value="your_username@localnet.com">
So i put these two things at diffrent times on my submit button in flash and i get no results what am i doing wrong??
on (release) {
subject = "NEW MEMBER";
recipient = "TheSimChallenge@aol.com";
loadVariablesNum (" 0, "POST"
gotoAndPlay (21);
}
the next try i did this
on (release) {
subject = "NEW MEMBER";
recipient = "TheSimChallenge@aol.com";
loadVariablesNum ("/cgi-sys/formmail.pl", 0, "POST"
gotoAndPlay (21);
}
thanks
To use Formmail, you need to create a form on one of your web pages.
The form action line should be
<FORM ACTION = "/cgi-sys/formmail.pl" METHOD = "POST">
formmail.pl will do all the programming work for you. You alter the behavior of Formmail by using hidden fields in your form.
There is only one form field that you must have in your form for FormMail to work correctly. This is the recipient field.
Field: recipient
Description: This form field allows you to specify to whom you wish for your form results to be mailed. Most likely you will want to configure this option as a hidden form field with a value equal to that of your e-mail address.
Syntax:
<input type=hidden name="recipient" value="your_username@localnet.com">
So i put these two things at diffrent times on my submit button in flash and i get no results what am i doing wrong??
on (release) {
subject = "NEW MEMBER";
recipient = "TheSimChallenge@aol.com";
loadVariablesNum (" 0, "POST"
gotoAndPlay (21);
}
the next try i did this
on (release) {
subject = "NEW MEMBER";
recipient = "TheSimChallenge@aol.com";
loadVariablesNum ("/cgi-sys/formmail.pl", 0, "POST"
gotoAndPlay (21);
}
thanks