yeah that is what i was thinking i have changed the script to the below and obvious the variables in flash but still no success
Action script
on (release) {
_parent.getURL("contact.php","_blank","GET");
_parent.your_name="Your Name:";
_parent.your_email="Your Email:";
_parent.your_subject="Subject:";
_parent.your_message="Message:";
}
PHP
<?php
$your_name = $_GET['your_name'];
$your_email = $_GET['your_email'];
$your_subject = $_GET['your_subject'];
$your_message = $_GET['your_message'];
$recipient_email = "mystic.dj.ghs@gmail.com";
$subject = "from " . $your_email;
$headers = "From: " . $your_name . " <". $your_email . ">\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1';
$content = "<html><head><title>Contact letter</title></head><body><br>";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "Subject: <b>" . $your_subject . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>";
$content .= $your_message;
$content .= "<br></body></html>";
mail($recipient,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282E2C">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeTo(300, 300)</script>
And still getting same email
A message that you sent contained no recipient addresses, and therefore no
delivery could be attempted.
------ This is a copy of your message, including all the headers. ------
To:
Subject: from
From: <>
Content-type: text/html; charset=iso-8859-1
Message-Id: <E1HYibM-0006jZ-0Z@hd-t1119cl.privatedns.com>
Sender: <djmystic@hd-t1119cl.privatedns.com>
Date: Tue, 03 Apr 2007 08:59:08 -0400
<html><head><title>Contact letter</title></head><body><br>Name: <b></b><br>Subject:
<b></b><br>E-mail: <b></b><br><hr><br><br></body></html>