Your server should have the Sendmail configured or a different mail server.
To strip HTML you can use $message = strip_tags($message); $message2 = strip_tags($message2);
Or you can use htmlspecialchars
to convert special chars to HTML entities.
6
solved Php form issue with submitting [closed]