a href="mailto:whoever@whereever.com?subject=Typemysubjecthere?&body=Body of email document">Send email</a>
Veljo said:Looks to me like you can have your normal HTML file, and it needs to point to the php document to send.
// send mail and print success message
$message = stripslashes($message);
$Name = stripslashes($Name);
mail($recipientemail,"$subject","$message","From: $Name <$Email>");