Everything comes to me as spam within Netlify

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!

hey alberto,

can you read through this thread and see if what you are experiencing matches what others have said?

interestingly enough, i am seeing a number of complaints about akismet being overactive lately. you may not be the only one - seems like something is up that is making akismet be more aggressive in marking things as spam over the last few days.

Thanks for your answer, mmm in that case I think I will implement it with Netlify functions.

1 Like