I recently launched a new website, and in it, used the form code given to me from Salesforce.com so the form results go into that system. Here is the code:
<form action="https://www.salesforce.com/servlet.WebToLead?encoding=UTF-8" method="POST">
  <div id="email_signup"> 
    <input type=hidden name="oid" value="00000000000000">
    <input type=hidden name="retURL" value="http://www.example.com/thank-you">                                 
    <input type="text" name="email" id="input_newsletter_email" maxlength="80" style="display:none;"/> 
    <label for="first_name">First Name</label>
        <input  id="first_name" maxlength="40" name="first_name" size="20" type="text" /><br>
    <label for="last_name">Last Name</label>
        <input  id="last_name" maxlength="80" name="last_name" size="20" type="text" /><br>
    <label for="company">Company</label>
        <input  id="company" maxlength="40" name="company" size="20" type="text" /><br>
    <label for="email">Email</label>
        <input  id="email" maxlength="80" name="email" size="20" type="email" required /><br>
    <label for="phone">Phone</label>
        <input  id="phone" maxlength="40" name="phone" size="20" type="phone" /><br>
  </div>
</form>
We've been getting some spam signups like " Company: nxlhfzxg, Lead Name: rnsoniinqe rnsoniinqe"
There doesn't seem to be any purpose to these, but they are coming in frequently.
I added in the required attribute to email because I thought that might help, but it didn't. They just started inputting random emails.
Do you know:
- Why this would happen
 - What I can do to prevent it? Is Wufoo a good choice?
 
Thanks!