<html><body><?php if(isset($_REQUEST['email']))// if "email" is filled out send mail{//send email$email=$_REQUEST['email'];$subject=$_REQUEST['subject'];$message=$_REQUEST['message'];mail("
someone@example.com","subject:$subject",$message;"from:$email";)ech