Category: ASP

Create Send E Mail Form PHP
*Create a file called sendmail.html, copy the data below into it and upload it

From Email:
To Email:
Message:

 

*Create a file called sendmail.php, copy the data below into it and upload it

<? $fromemail = $_REQUEST['fromemail' ; $toemail = $_REQUEST['toemail' ; $message = $_REQUEST['message' ; mail( $toemail, "Feedback Form Results", $message, "From: $fromemail" ); print "mail sent"; ?>

back

*Surf to the HTML page

PHP

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.