# PHP Flash email HELP!

**URL:** https://forum.kirupa.com/t/php-flash-email-help/46385
**Category:** flash
**Created:** [March 24, 2004, 1:40am UTC](https://forum.kirupa.com/t/php-flash-email-help/46385 "2004-03-24T01:40:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Harpreet](https://avatars.discourse-cdn.com/v4/letter/h/7ea924/32.png) [@Harpreet](https://forum.kirupa.com/u/Harpreet)
#### Post date: [March 24, 2004, 1:40am UTC](https://forum.kirupa.com/t/php-flash-email-help/46385/1 "2004-03-24T01:40:17Z")

</div>

Its just not working an idea why?:red:

The code on my button

on(release){  
envelope = new LoadVars();  
res=new LoadVars();  
envelope.email=from\_txt.text;  
envelope.subject=subject\_txt.text;  
envelope.messager=comments\_txt.text;  
res.onLoad=function(){  
comments\_txt.text=this.response;  
}  
envelope.sendAndLoad(“email.php”,res,“POST”);  
}

Code in PHP file

\<?php  
mail("me@me.com", “the subject”, “Line1  
Line 2  
Line 3”);  
echo “response=hello”;

?\>

My server says it supports PHP do I have to something extra besides uploading the above file?
