site https://pci-zgz.netlify.app/
Hi! I use Gatsby, in other similar projects I haven’t had any problems but right now it is happening in several projects.
The form arrives as spam to the Netlify platform.
I have the static form for detection.
<form name="contacto" method="post" netlify-honeypot="bot-field" data-netlify="true" hidden>
<input type="text" name="bot-field" /> - bot-field
<input type="text" name="from" /> - from
<input type="text" name="name" /> - name
<input type="email" name="email" /> - email
<input type="tel" name="phone" /> - phone
<textarea name="message"> </textarea>
<input type="text" name="policy" />
</form>
The async form loads fine, and I capture this data in the submission.
form-name=contacto&
bot-field=&
from=p%C3%ADe+de+p%C3%A1gina&
name=alberto&
email=albexxxx%[40gmail.com](http://40gmail.com/)&
phone=657454332&
message=Hola+qu+tl&
policy=acepta-politica
And what I get to Netlifty as spam.
Bot Field
From píe de página
Name alberto
Email albexxxx@gmail.com
Phone 657454332
Message Hola que t?
Acepto la política de privacidad acepta-politica
I have tried to remove the honeypot from the <form>
and other things but the same thing happens. but the same thing happens.
Thanks!