function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sarah AcostaSarah Acosta 

Web to Leads not generating in Sandbox (visualforce leads page)

I've followed the W2L steps online but my leads are not showing up in my sandbox. I have done a few different tests to determine the problem and still nothing. 

I'm wondering if it Is it because our Leads page is a visual Force page? Do I need to modify the code?

<!--  ----------------------------------------------------------------------  -->
<!--  NOTE: Please add the following <META> element to your page <HEAD>.      -->
<!--  If necessary, please modify the charset parameter to specify the        -->
<!--  character set of your HTML page.                                        -->
<!--  ----------------------------------------------------------------------  -->

<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">

<!--  ----------------------------------------------------------------------  -->
<!--  NOTE: Please add the following <FORM> element to your page.             -->
<!--  ----------------------------------------------------------------------  -->

<form action="http://cs1.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST">

<input type=hidden name="oid" value="00DJ0000003KLf9">
<input type=hidden name="retURL" value="http://blueearthlabs.com">

<!--  ----------------------------------------------------------------------  -->

<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="email">Email</label><input  id="email" maxlength="80" name="email" size="20" type="text" /><br>

<label for="company">Company</label><input  id="company" maxlength="40" name="company" size="20" type="text" /><br>

<label for="city">City</label><input  id="city" maxlength="40" name="city" size="20" type="text" /><br>

<label for="state">State/Province</label><input  id="state" maxlength="20" name="state" size="20" type="text" /><br>

<input type="submit" name="submit">

</form>
kanavkhuranakanavkhurana

Hi,

You can refer to the article below:

http://help.salesforce.com/apex/HTViewSolution?id=000038182&language=en_US

The form action URL you have mentioned seems correct. Just validate the OrgId once.
If that is also correct, you can try uncommenting the lines in the generated W2L code that enable sending a debug email to a given address for each W2L submission. That might lead you to the issue.

Best!