# Flash based email wont go to next frame... help!

**URL:** https://forum.kirupa.com/t/flash-based-email-wont-go-to-next-frame-help/65731
**Category:** flash
**Created:** [September 29, 2004, 3:11am UTC](https://forum.kirupa.com/t/flash-based-email-wont-go-to-next-frame-help/65731 "2004-09-29T03:11:11Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hotwireddriveby](https://avatars.discourse-cdn.com/v4/letter/h/97f17d/32.png) [@hotwireddriveby](https://forum.kirupa.com/u/hotwireddriveby)
#### Post date: [September 29, 2004, 3:11am UTC](https://forum.kirupa.com/t/flash-based-email-wont-go-to-next-frame-help/65731/1 "2004-09-29T03:11:11Z")

</div>

Hi, im doing the flash based email thing as seen [here](http://kirupa.com/developer/actionscript/flash_php_email.htm).

i did it all, but when i take the finished product,m and hit send, it does nothing. please help. i am attaching the .fla file alonng with this, but not the .php. here is what is on hte .php

```auto
  <style type="text/css">
<!--
body {
 background-color: #000000;
}
-->
</style>
<title>Contact Naaman</title><div align="center"></div>
<?php
$sendTo = "[email="naaman@atomicmatches.com"]naaman@atomicmatches.com[/email]";
$subject = "Contact From Website";

$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"]
; 
$headers .= "Return-Path: " . $_POST["email"]; 
$message = $_POST["message"];

mail($sendTo, $subject, $message, $headers);
?>
<div align="center"></div>

```

thank you for looking
