Jump to content

PHP Formmail Help


scott botkins

Recommended Posts

What I'm wanting to do is when I open outlook and hit reply it will reply the email to the email field people have filled out instead of replying to the email the form was sent too. Below is my code...

 

<?php


$subject = 'Email Subject';                // Subject of email sent to you.
$emailadd = 'email@email.com';        // Your email address. This is where the form information will be sent.
$url = 'http://www.site.com/success.html';               // Where to redirect after form is processed.
$req = '0';                                  // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.

// --------------------------Do not edit below this line--------------------------
$text = "Results from form:\n\n";       
$space = '  ';
$line = '
';

foreach ($_POST as $key => $value)
{
if ($req == '1')
{
	if ($value == '')
	{echo "";die;}
}
$j = strlen($key);
	if ($j >= 30)
	{echo "Name of form element $key cannot be longer than 20 characters";die;}
$j = 20 - $j;
	for ($i = 1; $i <= $j; $i++)
	{$space .= ' ';}
$value = str_replace('\n', "$line", $value);
$conc = "{$key}:$space{$value}$line";
$text .= $conc;
$space = '  ';
}
mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
?>

 

Thanks a ton for any help provided!

Link to comment
Share on other sites

Try this, should work, I dont have a way to test it ATM.

 

Just replace your mail function with what i have provided below.

 

$headers  = 'From: '.$emailadd.' \r\n';
$headers .= 'Reply-To: '.$emailadd.' \r\n';
$headers .= 'X-Mailer: PHP v '.phpversion(). '\r\n';

mail($emailadd, $subject, $text, $headers);

Link to comment
Share on other sites

thanks, ProjectFear, thats the right link i think, cannot signup yet:

We are sorry to inform you that due to the fact that we have recently purchased a new dedicated server, hosting sign-ups have been disabled. We promise to have everything moved by next week.

but i will try to wait,

thanks PC Nerd, i will check it out.

Ted

Link to comment
Share on other sites

Thanks kickassamd for guiding me in the right direction. I did it a little differently but still used your From:

 

I just added $client = $_POST['Email']; at the top and then

 

$headers  = 'From: '.$client.'';

 

mail($emailadd, $subject, $text, $headers);

 

at the bottom which works perfectly. Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.