# Email recieved but blank

**URL:** https://forum.kirupa.com/t/email-recieved-but-blank/191053
**Category:** Uncategorized
**Created:** [June 16, 2006, 5:23pm UTC](https://forum.kirupa.com/t/email-recieved-but-blank/191053 "2006-06-16T17:23:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![artistwantab](https://avatars.discourse-cdn.com/v4/letter/a/bbce88/32.png) [@artistwantab](https://forum.kirupa.com/u/artistwantab)
#### Post date: [June 16, 2006, 5:23pm UTC](https://forum.kirupa.com/t/email-recieved-but-blank/191053/1 "2006-06-16T17:23:43Z")

</div>

I recieve the email just fine but the regardless of what I type the text is blank.

?

```auto
<?PHP

$to = "info@mywebsite.com";
$subject = "Contact from webSite";
$message = "Name: " . $theName;
$message .= "
Email: " . $theEmail;
$message .= "

Message: " . $theMessage;
$headers = "From: $theEmail";
$headers .= "
Reply-To: $theEmail";

$sentOk = mail($to,$subject,$message,$headers);

echo "sentOk=" . $sentOk;

?>

```

```auto
stop();

var senderLoad:LoadVars = new LoadVars();
var receiveLoad:LoadVars = new LoadVars();

sender.onRelease = function() {
    senderLoad.theName = theName.text;
    senderLoad.theEmail = theEmail.text;
    senderLoad.theMessage = theMessage.text;
    senderLoad.sendAndLoad("http://eliocamacho.com/newSite/php/send.php",receiveLoad);
}

```

One other question could I get the IP address of the sender?
