I'm having endless troubles creating a contact form in PHP.

I first tried the method to write the data (as outlined in the question here: HTML Form Not Outputting To CSV File (Or Displaying Correct Error Messages)) and now I'm just trying the method of sending the info in an e-mail to myself.

Here's my jsfiddle:

http://jsfiddle.net/tqs6g/1/

Here's the PHP I've written to send the info to myself (I understand it's not very elegant coding but I just want to get something to work first and then I was going to use arrays, etc.):

<?php

if (isset($_POST['brandname']) && isset($_POST['firstname']) && isset($_POST['lastname']) && isset($_POST['email']) && isset($_POST['website'])){
    $brandname = $_POST['brandname'];
    $firstname = $_POST['firstname'];
    $lastname = $_POST['lastname'];
    $email = $_POST['email'];
    $website = $_POST['website'];

    if(!empty($brandname) && !empty($firstname) && !empty($lastname) && !empty($email)){
        $to = 'myemail@example.com';
        $subject = 'Submission Form';
        $body = $firstname;
        $headers = 'From: '.$email;

        if (@mail($to, $subject, $body, $headers)){
            echo 'Yeah yeah';
            }else{
                echo 'yeah no.';
                }

        }else{
        echo 'Please fill out all required fields.';
        }

    }
?>

The e-mail I used in this example is obviously not my e-mail (I use my real one in my code). Basically what happens is I fill out the form and hit submit and it reloads the form.php page. I check my e-mail and nothing has come through. If I check the source code for the site the words 'Yeah yeah.' show up in the code (from where it echos out when it successfully sends the e-mail). So the code seems to be running properly but it's not outputting anything.

Do I have to set up some mail servers/functions through my localhost?

What am I missing out on?

link|improve this question

If you're working locally (e.g. with XAMPP) you need to set a path to sendmail in php.ini in order to send emails. This may be helpful: codingforums.com/archive/index.php/t-77553.html – Quasdunk Jan 7 at 19:34
Could you turn errors an warnings on, or check your logs? – mat Jan 7 at 19:36
My php.ini already has: [mail function] ; For Win32 only. SMTP = localhost smtp_port = 25 . Is this the line that I should be looking at? – MxmastaMills Jan 7 at 19:38
What warnings would I need to look at? As far as it looks like, the code is running correctly since everything reloads and it sends a successful echo back. Where would I start with my debug? – MxmastaMills Jan 7 at 19:39
1  
@MxmastaMills Alright, I see... I can relate to your problem, since Linux and Mac OS are based on UNIX. The best solution I've found: Install PostFix. This seems quite promising and quite similar to what I did: hints.macworld.com/article.php?story=20081217161612647 - maybe my question about that will also help you a little: askubuntu.com/questions/88117/… - Good luck! – Quasdunk Jan 7 at 23:56
show 7 more comments
feedback

1 Answer

You don't need to set anything up on your server, it works fine for me.

Try replacing the @mail with just mail. mail(...) always works for me.

link|improve this answer
1  
The @ 'operator' suppresses error messages. @mail and mail call the same function. – Alex Jan 7 at 19:27
@H Bellamy I tried that but it didn't change anything. – MxmastaMills Jan 7 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.