Jump to content

email form


briciusaz

Recommended Posts

I need someone to help me out by keeping this code but one part of this php script. Right now I am getting the header of from in my email address but I do not want that- I prefer from person who is filling ou tthe form. The main reason I want to keep this script is because I can put whatever I want in form and still get it in email. Just need to chang ethe from part instead of my email address. HELP!!

Thanks

 

<?php

$subject = 'CONTACT FORM';         

$emailadd = '[email protected]';     

$url = '../thankyou.html';           

$req = '1';                               

 

 

$text = "Results from form:\n\n";     

$space = '  ';

$line = '

 

';

foreach ($_POST as $key => $value)

{

 

$j = strlen($key);

if ($j >= 30)

{echo "Name of form element $key cannot be longer than 30 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.'">';

?>

Link to comment
https://forums.phpfreaks.com/topic/49318-email-form/
Share on other sites

http://ca3.php.net/mail

 

the php mail() function is really easy to use. if you read the manual on it it will answer your question completly + much more.

 

in email there is the header section. you must decide what you want in the header section, and edit accordingly. you can then have the email appear to come from however you like.

Link to comment
https://forums.phpfreaks.com/topic/49318-email-form/#findComment-243756
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.