How to direct values from php textboxes in a form to a email account?

by xckoza
1 replies
I have a web form at designed in php. Can you provide me with a simple code to connect a textbox to an email account.
#account #direct #email #form #php #textboxes #values
  • Profile picture of the author SEO_BOS
    Very simple sendmail.php script. Point to it from your form:
    <?php
    $email = $_REQUEST['email'] ;
    $message = $_REQUEST['message'] ;

    mail( "yourname@example.com", "Feedback Form Results",
    $message, "From: $email" );
    header( "Location: http://www.example.com/thankyou.html" );
    ?>

    Also a third party solution might be-

    Email Me Form™ - HTML Forms, Web Forms, PHP Forms
    {{ DiscussionBoard.errors[672404].message }}

Trending Topics