Instead of
mail("myemailaddress@myemailaddress", "Sent From My Web Site Form",
$message, "From: $My official html page with the from it it." );
use
mail("myemailaddress@myemailaddress", "Sent From My Web Site Form",
$emailmessage, "From: $My official html page with the from it it." );
The \n command is a line-break like the <br> in HTML
The \n command would prevent a email like this:
This message was sent via the form on your web site:Information from form
Instead you'll get:
This message was sent via the form on your web site:
Information from form