Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$descr="hello here is an email";
$message="with this message";
mail($emailtoaddress,$descr,$message,"From: info@youredomain.com\nReply-to:info@youredomain.com");
ofcourse you can also make it dynamic I think
mail($emailtoaddress,$descr,$message,"From: ". $fromemail."\nReply-to:".$replyemail);