How to prevent spambot from detecting emails from forms

gm1234

New member
People shift from providing email addresses to using forms (for contact) in order to avoid spam

bots. But there are some new spam bots today which can detect email address even through forms

present on a website. Any solution to prevent this?

generally the form action is as follows

<form action="xyz@xyz.com">

Any other way this can be written to prevent it from being detected by spam bots?
 
Or you could do something like this.

Create a config file and store the email address in that. Put the config file inside a password protected folder. Then include/retrieve the config file using the contact form.
 
or you can use something as simple as a php script so when they submit the info it submits it to another page which if all the information is there it really then sends the form which is quit easily done. kind of complicated how to say exactly to do it but it's easy to do.
 
Back
Top