Category: ASP
Create Send E Mail Form PHP
*Create a file called sendmail.html, copy the data below into it and upload it
*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