I have an email form that is sending to an email address. There are five fields where the person sending can input their Name, Address, City, State, and Zip. Everything is working, except I want the input from these fields to be the the headers in the PHP email.
For instance it submits and send the letter, but I want the senders Name, Address, City, State, and Zip to be posted after the "Sincerely" in the letter sent. Here is what the input boxes of the form looks like:
Code:
<p>Sincerely,<br />
<label for="from">Name:</label>
<input type="text" name="from" id="from" value="<?php echo $_POST['from'];?>"/><br />
<label for="street">Street:</label>
<input type="text" name="street" id="street" value="<?php echo $_POST['street'];?>"/><br />
<label for="city">City:</label>
<input type="text" name="city" id="city" value="<?php echo $_POST['city'];?>"/><br />
<label for="zip">Zip:</label>
<input type="text" name="zip" id="zip" value="<?php echo $_POST['zip'];?>"/><br />
<label for="email">E-mail:</label>
<input type="text" name="email" id="email" value="<?php echo $_POST['email'];?>"/></p>
<input type="submit" class="button" value="Submit" />
I want to post the value of the input boxes here to print out in the email sent. How do I script the "$headers" to insert the values from the input boxes in the form?
Here is what the header looks like. How to I get the the "from" value in the form to post in the email? I am unsure of the syntax.
Code:
$headers = "From: ";
I need to enter something after the "From:" above. Any ideas?
|