Yes I did go and read the mail stuff. I guess I am a little confused.
I have a simple form where the user files in 4 boxes and then hits send. I though this would be setup like I had it so the information filled in would be e-mailed to the address in the script. I see you have from in the script and I am not sure why. The user files in name,company,emai and a message when I get it I want it to look like this:
name: rob
company: test
e-mai: rob@main.com
message: testing
I have the form in flash. this is what I have for code on the flash submit button:
on (release) {
subject = "Testing Mail";
message="Name="+name+newline+"Company="+company+newline+"email2="+email2+newline+"message="+message+newline;
this.loadVariables("simple.php","POST");
mailstatus="Message being processed";}
This is what I am talking about and what I am trying to accomplish. can you help?
Thanks