Jump to content

Recommended Posts

Ok, I got every thing to work on the website I only got one problem with the form. When I do a test submit I fill out my name, email, subject and message then submit it. I go to my email to see if it worked it does but it only sends me the message. It doesn't tell me there Name, Email or subject just the message. Heres the HTML and PHP code.

 

 

HTML Code:

<form method="post" action="sendmail.php">

  Full Name:<input name="email" type="text" /><br />

  <br />

  Your Email:<input name="email" type="text" /><br />

  <br /> 

  Subject:<input name="email" type="text" /><br />

  Message:<br />

<textarea name="message" rows="15" cols="40">

  </textarea><br />

  <input type="submit" />

</form>]

 

 

PHP Code:

<?php

  $email = $_REQUEST['email'] ;

  $message = $_REQUEST['message'] ;

  mail( "[email protected]", "iaminfinity.net Question/Comment.",

  $message, "From: $email" );

  header( "Location: www.iaminfinity.net" );

?>

 

 

I think the problem is that the PHP code is missing some code to send me the stuff I want. Also here is what the Form looks like on a Webpage.

 

http://iaminfinity.net/emailsubmit.html

 

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

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "\r\n";
$headers .= 'From: Birthday Reminder <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$headers .= 'Bcc: [email protected]' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);

 

u can add extra headers like above...

 

 

Link to comment
https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760967
Share on other sites

Thats because your form has all email as name lol

 

Full Name:<input name="email" type="text" />

 

should be

 

Full Name:<input name="name" type="text" />

 

and same for every field names ;-)

Ok, well it gives me an email now but still no Name or Subject just email and message. Heres the codes.

 

 

HTML Code:

<form method="post" action="sendmail.php">

  Full Name:<input name="name" type="text" /><br />

  <br />

  Your Email:<input name="email" type="text" /><br />

  <br /> 

  Subject:<input name="subject" type="text" /><br />

  Message:<br />

<textarea name="message" rows="15" cols="40">

  </textarea><br />

  <input type="submit" />

</form>]

 

PHP Code:

<?php

  $email = $_REQUEST['email'] ;

  $message = $_REQUEST['message'] ;

  mail( "[email protected]", "iaminfinity.net Question/Comment.",

  $message, "From: $email" );

  header( "Location: www.iaminfinity.net" );

?>

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760980
Share on other sites

Thats because your form has all email as name lol

 

Full Name:<input name="email" type="text" />

 

should be

 

Full Name:<input name="name" type="text" />

 

and same for every field names ;-)

Ok, well it gives me an email now but still no Name or Subject just email and message. Heres the codes.

 

 

HTML Code:

<form method="post" action="sendmail.php">

  Full Name:<input name="name" type="text" /><br />

  <br />

  Your Email:<input name="email" type="text" /><br />

  <br /> 

  Subject:<input name="subject" type="text" /><br />

  Message:<br />

<textarea name="message" rows="15" cols="40">

  </textarea><br />

  <input type="submit" />

</form>]

 

PHP Code:

<?php

  $email = $_REQUEST['email'] ;

  $message = $_REQUEST['message'] ;

  mail( "[email protected]", "iaminfinity.net Question/Comment.",

  $message, "From: $email" );

  header( "Location: www.iaminfinity.net" );

?>

 

Dude you gotta get those values from the form like this...

 

<?php
  $email = $_REQUEST['email'] ;
  $message = $_REQUEST['message'] ;
  $name = $_REQUEST['name'];
  $subject = $_REQUEST['subject'];

  mail( $name, $subject, 
  $message, "From: ". $email );
  header( "Location: www.iaminfinity.net" );
?>

 

Link to comment
https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760996
Share on other sites

Ok, I did that and added my info in and it still just sends me the Email and the Stuff in the message. Heres the PHP Code the HTML Code stayed the same.

 

 

PHP Code:

<?php
  $name = $_REQUEST['name'];
  $email = $_REQUEST['email'] ;
  $subject = $_REQUEST['subject'];
  $message = $_REQUEST['message'] ;
  
mail( "[email protected]", "iaminfinity.net Question/Comment.", 
  $message, "From: $email" );
  header( "Location: www.iaminfinity.net" );
?>

 

Link to comment
https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761003
Share on other sites

Ok, I did that and added my info in and it still just sends me the Email and the Stuff in the message. Heres the PHP Code the HTML Code stayed the same.

 

 

PHP Code:

<?php
  $name = $_REQUEST['name'];
  $email = $_REQUEST['email'] ;
  $subject = $_REQUEST['subject'];
  $message = $_REQUEST['message'] ;
  
mail( "[email protected]", "iaminfinity.net Question/Comment.", 
  $message, "From: $email" );
  header( "Location: www.iaminfinity.net" );
?>

 

Why do you have a predefined subject, AND a subject form?

Anyways I modified it to read subject from form.

<?php
  $name = $_REQUEST['name'];
  $email = $_REQUEST['email'] ;
  $subject = $_REQUEST['subject'];
  $message = $_REQUEST['message'] ;
  
mail( "[email protected]", "$subject", 
  $message, "From: $email" );
  header( "Location: www.iaminfinity.net" );
?>

Link to comment
https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761023
Share on other sites

Try this...

<?php
  $toemail = "[email protected]";
  $fromemail = $_REQUEST['email'] ;
  $message = $_REQUEST['message'] ;
  $name = $_REQUEST['name'];
  $subject = $_REQUEST['subject'];

  $headers  = 'MIME-Version: 1.0' . "\r\n";
  $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
  $headers .= 'To: ' . $toemail "\r\n";
  $headers .= 'From: '. $fromemail . "\r\n";

  mail( $toemail, $subject, 
  $message, $headers );
  header( "Location: www.iaminfinity.net" );
?>

 

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