B
Broken M
Guest
So I have a website that sends email by itself...
Basically, there is no validation or captcha on it (at the clients request and against our liking), and the mail() function sends emails by itself. It does not add the headers nor any other such things, and thus the HTML comes out as pure text (since the MIME header does not get added). What could be going on here?
PS: I added a log system that logs the user IP, port, browser version/name, OS version/name, and what page they submitted the form to, and it still does not record any malicious attempts at submitting the form. There are no extraneous infinite loops, as the site only sends 1 or 2 of these a day. Would a search engine spider or crawler be responsible for these? why would the mail function send without adding headers if its in an if($_POST['submit']) block of code?
Basically, there is no validation or captcha on it (at the clients request and against our liking), and the mail() function sends emails by itself. It does not add the headers nor any other such things, and thus the HTML comes out as pure text (since the MIME header does not get added). What could be going on here?
PS: I added a log system that logs the user IP, port, browser version/name, OS version/name, and what page they submitted the form to, and it still does not record any malicious attempts at submitting the form. There are no extraneous infinite loops, as the site only sends 1 or 2 of these a day. Would a search engine spider or crawler be responsible for these? why would the mail function send without adding headers if its in an if($_POST['submit']) block of code?