loadVariablesNum("mailform.php", 0, "POST");
Y LISTO!!!! CLARO DEBES DE ENVIAR LOS VALORES DESDE TU FORMULARIO FLASH A UN SCRIPT SENCILLO DE PHP PARA RECIVIR VARIABLES Y MANDARLAS POR EMAIL.- CUALQUIERAS QUE USES EN UNA WEB PHP TE SERVIRA.-
O PODRIAS USAR ESTE:
mailform.php
Código PHP:
<?php
$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';
echo $TextVariable;
echo $response;
/* recipients */
$recipient .= "" ;
/* subject */
$subject = "Your Automail";
/* message */
$message .= "Name: $name
Email: $email
Comments: $comments\n";
/* additional header pieces for errors, From cc's, bcc's, etc */
$headers .= "From: $name <$email>\n";
/* and now mail it */
mail($recipient, $subject, $message, $headers);
?>
see you................!!!!