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?