mail("my@email.com","Form Submitted at your website",$message,"From: phpFormGenerator",$headers);
This was an attempt to remove the HTML tags that are showing up in the email message. A couple of threads suggested that this is the fix. I'm sure that I am doing something wrong.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
To clarify: What I am asking is in what file are the header of the email defined? Thanks in advance. and thanks for the great script!
PS Although<br/> the mail comes &nsp's &nsp'sthrough<br/><br/>and the script works<br/>great, it's still somewhat<br/>tedious to &nsp'sift through a bunch of <br/>'s and &nsp's
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, the email message fails to arrive after adding the following header code to process.php:
$message = stripslashes($message);
added--> $headers = "MIME-Version: 1.0\r\n";
added--> $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
mail("my@email.com","Form Submitted at your website",$message,"From: phpFormGenerator",$headers);
This was an attempt to remove the HTML tags that are showing up in the email message. A couple of threads suggested that this is the fix. I'm sure that I am doing something wrong.
To clarify: What I am asking is in what file are the header of the email defined? Thanks in advance. and thanks for the great script!
PS Although<br/> the mail comes &nsp's &nsp'sthrough<br/><br/>and the script works<br/>great, it's still somewhat<br/>tedious to &nsp'sift through a bunch of <br/>'s and &nsp's