I have a form on my website for contacting my company. Users have to put in the standard First and last name, e-mail address and a message. This information is then submitted to a php mail function.
I did this under the impression that the e-mail address the form information was sent to is not really visable, thus crawlers and such could not harvest it for spam.
The user who recieves the e-mail is complaining of spam "from the website". As I said, my impression was that spammers could not get the address, so I'm unconvinced that the user's spam has anything to do with the website.
My question is this, is it possible that the e-mail address could be harvested even though the actual e-mail the form is sent to ony exists within a
format?
Thanks in advance!
I did this under the impression that the e-mail address the form information was sent to is not really visable, thus crawlers and such could not harvest it for spam.
The user who recieves the e-mail is complaining of spam "from the website". As I said, my impression was that spammers could not get the address, so I'm unconvinced that the user's spam has anything to do with the website.
My question is this, is it possible that the e-mail address could be harvested even though the actual e-mail the form is sent to ony exists within a
Code:
<?php mail($recipient, $subject, $body ?>
Thanks in advance!