need an ASP email proccssing script to process my flash mx 2003 forms. I have a PHP like this:
<?php
################################################## #############################
# Function: this file will use input from a flash form and send it to whomever
# is defined in the variable destinationAddress. It also sends an autorespond
# message
################################################## #############################
# Destination Email Adress :: FILL IN DESTINATION EMAIL ADDRESS
$destinationAddress="
[email protected]";
################################################## #############################
# Date and time
$nowDay=date("d.m.Y");
$nowTime=date("H:i:s");
################################################## #############################
# Body content
$FormContent="Message date = $nowDay at $nowTime
----------------------------------------------------------------------------
From: $fullName
Email: $email
Subject: $subject
----------------------------------------------------------------------------
Message: $message
";
#
mail($destinationAdress, "$subject [ from $fullName ]", $FormContent, "From: $email");
#
# Autoresponder ################################################## ###########
#
$filename = "respond.txt";
$fd = fopen( $filename, "r" );
$start = "Hello ".$fullName."\n\n";
$contents = fread( $fd, filesize( $filename ) );
$mailContent = $start.$contents;
fclose( $fd );
mail( "$email", "auto respnce from Silver Eagle Design", "$mailContent\n",
"From:
[email protected]\n" );
#
# Flash mailResult Variable ; sent to flash ################################################## ####
#
$mailResult="[u]SUCCESS</u><br>Your message was sent. You have received a confirmation message.";
echo "mailResult=$mailResult";
#
################################################## #############################
?>
But PHP will not run on my windows 2003 server can any one help me with an ASP script that will process the forms?