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

by 1 replies
2
#programming #account #direct #email #form #php #textboxes #values
  • 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
  • Banned
    [DELETED]

Next Topics on Trending Feed