1

Ive been trying this out the whole day but I cant figure out how to send an email from my html contact form containing the information from the form to my email address. Im new to php.

Ive tried running this by uploading it to free web hosting. I get the message "success!" when I press the submit button on my html form but no email is actually sent.

Any help is appreciated.

PHP script:

<?php

//Subject
$subject ="Contact Form Submission";

// Name
$name =$_POST['InputName'];

// Message
$message =$_POST['InputMessage'];

//Mail of Sender
$email =$_POST['InputEmail'];

//From
$header = "From:$name<$email>";

$send_contact=mail("[email protected]",$subject,$message,$header);

//Check if mail was sent
if($send_contact){
echo "Success!";
}
else {
echo "Error!";
}
?>

EDIT: Figured it out after one whole day of trial and error. The problem was with the free web host I was using. Changed hosts and the code started working fine. Hope this helps someone in the future. Thanks all for the help.

Noob_Programmer
  • 111
  • 5
  • 14

3 Answers3

2

I have a pretty good idea why your code is not working. It happened to me a long time ago. The reason why your code is not working is because :

  • When you pass "from" in headers, php expects an existing email account of your
    server. For example : $headers = 'From: [email protected]';
  • So first thing you gotta do is create an email account on your server. And then put the From in header to the email address that you've just created.
  • The From field in the $headers is not the From as you think.
  • <?php
  • $email = $_POST["InputEmail"];
  • $subject = $_POST["InputSubject"];
  • $message = "From: ".$email.", ".$_POST["InputMessage"]; // you put the email address from the input form here
  • $headers = 'From: [email protected]'; // here is the email address specified from which u want to send the email.(i.e. your server email address)
  • mail($to, $subject, $message, $headers)
  • ?>

I'm sure this will do the job :)

The SuperKat
  • 234
  • 2
  • 10
0

Have a shot at this.

I changed you're $header variable around a little bit, so that rather than setting the email as "$email", It'll actually pass through the posted email entered in the form. This apply's to the name too.

I also made it so that you pass the mail function through the parameters of the if statement, rather than setting a new variable.

$headers = "From: " . $name . "<" . $email . ">"; // notice new concatenation

if(mail("[email protected]", "Contact Form Submission", $message, $headers)){
    // success message
} else {
    // error message
}

Really hope this helps! :)

GROVER.
  • 4,071
  • 2
  • 19
  • 66
0

Try adding spaces after the "=" that might be the problem,

If that doesn't work you could try to use this

 <?php
     $emailvariable = $_POST['InputEmail']


    $to      = '[email protected]';
    $subject = "Form"
    $message = $_POST['InputMessage'];
    $headers = "From: $emailvariable";

    mail($to, $subject, $message, $headers);
    ?> 

Hope this helps

  • i tried using your solution but still no email sent. I really cant seem to figure out the problem. – Noob_Programmer Aug 21 '16 at 09:47
  • Are you hosting your website with a domain etc.. Because if you aren't you are not able to use a mailserver to send mail. So with wamp or mamp you are not able to do this, if you are hosting it on a website try removing the uppercase letters from the $_POST['InputEmail'] –  Aug 21 '16 at 10:06
  • Yup im hosting it on a website with a domain name using a free webhost. Do you mean something like $_post['inputemail']? – Noob_Programmer Aug 21 '16 at 10:30
  • Yes else try to change message to some type of string like "messagegoeshere" and then do the same for $headers = "From: [email protected]" –  Aug 21 '16 at 10:45