Mat10681
08-08-2003, 09:40 AM
I downloaded the files relating to the "Send Mail Contact Form (PHP and Flash)" and changed the php file to reflect my own email. My php file now looks like this:
<?php
mail("[email protected]", $subject, $message, "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/" . phpversion());
?>
I also renamed the php file from mail.php3 to mail.php.
I also changed the action on the button in the mailer.fla file to reflect the change form mail.php3 to mail.php. The action on the button now looks like this:
on (release) {
if (subject eq "" or message eq "" or from eq "") {
stop();
} else {
lineAdapt();
loadVariablesNum("mail.php", 0, "POST");
gotoAndStop(2);
}
}
I've uploaded both the mailer.swf and mail.php file to the public_html directory of my Spaceports account but when i run the mailer.swf file and submit the form i don't receive any emails. I've also tried it with a non-http mail server (i.e. not hotmail) but i still don't get any emails. HELP!!! :confused::confused:
<?php
mail("[email protected]", $subject, $message, "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/" . phpversion());
?>
I also renamed the php file from mail.php3 to mail.php.
I also changed the action on the button in the mailer.fla file to reflect the change form mail.php3 to mail.php. The action on the button now looks like this:
on (release) {
if (subject eq "" or message eq "" or from eq "") {
stop();
} else {
lineAdapt();
loadVariablesNum("mail.php", 0, "POST");
gotoAndStop(2);
}
}
I've uploaded both the mailer.swf and mail.php file to the public_html directory of my Spaceports account but when i run the mailer.swf file and submit the form i don't receive any emails. I've also tried it with a non-http mail server (i.e. not hotmail) but i still don't get any emails. HELP!!! :confused::confused: