Jump to content

mail () Not sending all variables


High Camp

Recommended Posts

Hi There

Thanks for taking the time to answer my post. I have spent hours working on this and searching all sorts of forums for the answer with no luck.

I have built a Flash email contact form that sends the contact on to my email. Here is the PHP code I am using:
[code]<?php
$name = $_Post["namesubmit"];
$email = $_POST["emailsubmit"];
$phone = $_Post["phonesubmit"];
$address = $_Post["addresssubmit"];
$iam = $_Post["iamsubmit"];
$ihave = $_Post["ihavesubmit"];
$text = $_Post["textsubmit"];
$to = "[email protected]";
$subject = "Online Email Form";
$headers = "From: $email";
$message = "Name: $name\nEmail: $email\nPhone: $phone\nAddress: $address\nI am a: $iam\nI have a: $ihave\nMessage: $text";
mail($to, $subject, $message, $headers);  
?>[/code]
And here is the email I get:
To: [email protected]
From [email protected] (The email I entered in the Flash form)
Subject: Online Email Form
Message Body:
Name:
Email: [email protected]
Phone:
Address:
I am a:
I have a:
Message:

From this I know that Flash is talking to PHP correctly. I have changed the $email variable to other things and it still works I.E. $email = $_Post["namesubmit"]; and this returns from Bob or whatever name I enter in the name field.

I'm not really sure what is going wrong here. I am wondering if maybe it is something in the server setup?

Thanks again for taking the time and hopefully this isn't something too simple that will make me look like at idiot.

High Camp
P.S. if you want to see the Flash form it is at www.highcamp.ca/en/emailform.html
Link to comment
https://forums.phpfreaks.com/topic/12426-mail-not-sending-all-variables/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.