How Do I Make The Contact Form In Html Send Data Directly To My Gmail N Not Open Email Software Like Outlook?

I have an HTML feedback form for my website. I want to send the input values of this form directly to my google mail. I have google hosted email for my domain. What do i do? I do not want to use any email software like outlook.

pixelstats trackingpixel

Popularity: 2% [?]

Related posts:

  1. Does Anyone Know Of A Good Software To Create A Php Script To Send An Attachment From An Html Form To Email? I need a software (not PHP codes) to create...
  2. Is There A Free Software To To Send Direct Html E-mail? I want to send a web page directly as e-mail,...
  3. Software To Send Out An Email To 2000 Addresses, One At A Time? I want to send out an email to guests to...
  4. Email Messages Stripped From Outlook Express Folders? Just wondered if anyone can help / advize me? I...
  5. Any Software That Can Send A Notification Via Email Whenever Certain Character On A Website Has Changed ? For example a website that display some figures (stock/fund price)...

Related posts brought to you by Yet Another Related Posts Plugin.

4 Responses to “How Do I Make The Contact Form In Html Send Data Directly To My Gmail N Not Open Email Software Like Outlook?”

  1. just "JR" says:

    This will always happen if you use the HTML “function” call “mailto= xxx”.
    Avoid using it: it is bad and amateurish design.
    If you have a server-side script like php, here is one:
    HTML FORM to EMAIL (Php)
    Your index.html file:



    Your name:

    Your password:

    Your email:



    (replace by their correct form – stupid editor!)
    Your emailfwd.php file:




    < ?php
    $name = $_POST['name'];
    $pwd = $_POST['pwd'];
    $email = $_POST['email'];
    $to = "youremail@whatever.com";
    $headers = "From: ".$email. "rn";
    $subject = "Submitted application";
    $msg = $name . " has sumitted a form!rn";
    $msg .= "Pwd: " . $pwd . "rn";
    $msg .= "email address: " . $email . "rn";
    mail($to, $subject, $msg, $headers);
    echo ("Mail processed.");
    ?>

  2. Sijo M says:

    You might consider using server side java script on the contact us page you want them to fill the contact form. It makes web page template should send the contact form details directly to your mail.

  3. Sleeping Troll says:

    It is better to use a form with a text field for messages, on server side send message to your email. This way you do not expose your email on the web.
    Example:http://bragflags.bravehost.com/contact.p…
    If you need help, contact me and I can prepare script for you.

  4. David D says:

    You need a server side script that will process the form data.
    See http://www.cs.tut.fi/~jkorpela/forms/
    The specifics will depend on the capabilities of your webserver.

Leave a Reply