Hi,
I would like to add capabilities to the contact widget that will allow the contacts details to not only be emailed over, but also added to salesforce CRM. They provide this functionality, however some modifications are required to the web form.
Below is an example of a typical "Web-to-Lead" form - I have taken a look at the contact widget php and can't quite figure out how I could make these additions myself. Please could someone help me?
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST">
<input type=hidden name="oid" value="00D30000000ooo">
<input type=hidden name="retURL" value="http://www.return-url.com">
<label for="first_name">First Name</label><input id="first_name" maxlength="40" name="first_name" size="20" type="text" />
<label for="last_name">Last Name</label><input id="last_name" maxlength="80" name="last_name" size="20" type="text" />
<label for="email">Email</label><input id="email" maxlength="80" name="email" size="20" type="text" />
<input type="submit" name="submit">
</form>













