Hi Guys,
I have been using a vert basic php form that sends its contents via email. But recently I am getting hundreds of spam emails that are using my script.
Basically, I use a HTML form that sends the value to a PHP script, which sends me an email with the contents.
I was told I need to use a ramdom numbers/letters generator or block multiple script uses from the same IP. Could somebody please help me with that or giving me other solutions?
I already get the IP information with:
$message .= ( "IP = " . $REMOTE_ADDR . "\n");
Is there a way I could leverage that to avoid the spamming?
Thanks so much for helping.