Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorlsilver
    • CommentTimeSep 10th 2010
     
    Any way to integrate a contact form with Vertical Response? We'd like to use FormAssembly forms to capture contact information and then add those contacts to a Vertical Response mailing list.
    • CommentAuthordbuschho
    • CommentTimeSep 10th 2010
     
    Hello,

    I don't believe we've had anyone ask about VR before. A quick check of their API makes it seem like it'd need a full blown plugin integration ( their API uses SOAP ).

    One thing I couldn't find easily, is how do they create their contact form for you? I assume they provide you with a bit of script to include in your pages.

    If you can provide us with that code, I can take a look and see if you could do a fake form submission by using the HTTP POST connector.

    Happy to help,
    FormAssembly.com Support.
  1.  
    Vertical Response can integrate with Salesforce, so you could potentially use the FormAssembly Salesforce connector, and then integrate that with Vertical Response using the app from AppExchange. That might be overkill for your needs though.
    • CommentAuthordbuschho
    • CommentTimeSep 10th 2010 edited
     
    Thanks for chiming in, Evan, that sounds like a great solution. I think I'm too connector-centric in my solutions, don't think to let Salesforce take up the slack.

    Maybe Lloyd can let us know if that solution can work for him.

    FA Support.
    • CommentAuthorlsilver
    • CommentTimeSep 10th 2010
     
    Good ideas.

    Below is their code for a simple, default opt-in form. My preference is to leave SFDC out of it. I don't want to capture these leads in my SFDC account. So hopefully the HTTP POST connector can do the job.

    <form method="post" action="http://oi.vresp.com?fid=abf85ad1ad" target="vr_optin_popup" onsubmit="window.open( 'http://www.verticalresponse.com', 'vr_optin_popup', 'scrollbars=yes,width=600,height=450' ); return true;" >

    <div style="font-family: verdana; font-size: 11px; width: 160px; padding: 10px; border: 1px solid #000000; background: #dddddd;">
    <strong><span style="color: #333333;">Sign Up Today!</span></strong>
    <p style="text-align: right; margin-top: 10px; margin-bottom: 10px;"><span style="color: #f00;">* </span><span style="color: #333333">required</span></p>
    <label style="color: #333333;">Email Address:</label> <span style="color: #f00">* </span>
    <br/>
    <input name="email_address" size="15" style="margin-top: 5px; margin-bottom: 5px; border: 1px solid #999; padding: 3px;"/>
    <br/>
    <label style="color: #333333;">First Name:</label>
    <br/>
    <input name="first_name" size="15" style="margin-top: 5px; margin-bottom: 5px; border: 1px solid #999; padding: 3px;"/>
    <br/>
    <label style="color: #333333;">Last Name:</label>
    <br/>
    <input name="last_name" size="15" style="margin-top: 5px; margin-bottom: 5px; border: 1px solid #999; padding: 3px;"/>
    <br/>
    <input type="submit" value="Join Now" style="margin-top: 5px; border: 1px solid #999; padding: 3px;"/><br/>
    <br/><span style="color: #333333"><a href="http://www.verticalresponse.com" title="Email Marketing by VerticalResponse">Email Marketing</a> by VerticalResponse</span>
    </div>
    </form>
    • CommentAuthordbuschho
    • CommentTimeSep 11th 2010
     
    Hello Lloyd,

    No promises, but it looks pretty simple:

    1. Set your POST connector endpoint to:
    http://oi.vresp.com?fid=abf85ad1ad

    2. Add the fields above:
    email_address
    first_name
    last_name
    as destination fields in the POST connector for the appropriate fields on your form.

    3. Test a submission.

    At a first glance, I think that should work. Are your VR users forced to do anything further ( say a confirm screen ) after entering their information to sign up on the form snippet you showed above? If so, then the POST connector might not work ( or the users may be entered as 'unconfirmed or some such thing ). If this is the case, there *might* be a way around, but it will probably get complicated.

    Happy to help,
    FormAssembly.com Support
    • CommentAuthordbuschho
    • CommentTimeSep 13th 2010
     
    Any luck Lloyd?