All Collections
Contacts
Integration using the Enudge Subscribe Form
Integration using the Enudge Subscribe Form

Allowing a visitor to your site to subscribe to your mailing list and automatically add his/her details to your Enudge account

Heather Maloney avatar
Written by Heather Maloney
Updated over a week ago

As an Enudge subscriber, the form code below can be used to integrate your website with Enudge when either: 

  1. You are unable to call a web service from your website, or 

  2. You are unable to add custom code to your website. 

The HTML code can be inserted into your page, adjusted by removing or hiding any fields you don't want your visitor to have to fill in (except for either the email address or mobile phone number, at least one of which must be provided) and then when a visitor to your site submits the form, their details will be passed over to an Enudge page which will process their request and present your logo (from your Enudge account) to the visitor.  You can also provide a link for the customer to click on to take them somewhere else (e.g. back to your site) after they have been added to your Enudge account (see the Follow On URL). 

If you need help to implement either the form below, or the integration with our web services for seamless integration from your website, our technicians will be pleased to assist you.  

Please note, you need an Enudge license number in order to integrate your site with your Enudge account.  If you don’t have an Enudge license number yet, please send an email to support@enudge.com.au with License Number request in the subject.

FORM CODE:

Notes: 

  • The Maxlength attribute has been added for each field to assist you to only allow your website visitors to provide content of a valid length. 

  • In order for a visitor to be added to your Enudge account they must either supply a valid email address or mobile phone number.  The rest of the fields are optional, and can be removed from your form if they are not required by you.

<form name="addcontact" action="http://www.enudge.com.au/form_subscribe.php" method="post">       
      <table>
      <tr><td>Firstname: </td><td><input type="text" name="firstname" size="30" maxlength="40"></td></tr>      
      <tr><td>Surname: </td><td><input type="text" name="surname" size="30" maxlength="40"></td></tr>              
      <tr><td>Salutation: </td><td><input type="text" name="salutation" size="30" maxlength="60"></td></tr>      
      <tr><td>Organisation: </td><td><input type="text" name="organisation" size="60" maxlength="150"></td></tr>      
      <tr><td>Reference / Customer Code: </td><td><input type="text" name="reference" size="20" maxlength="20"></td></tr>        
      <tr><td>Department: </td><td><input type="text" name="department" size="40" maxlength="150"></td></tr>      
      <tr><td>Position: </td><td><input type="text" name="position" size="40" maxlength="100"></td></tr>
      <tr><td>Email Address: </td><td><input type="text" name="email_addr" size="50" maxlength="80"></td></tr>
      <tr><td>Business Phone: </td><td><input type="text" name="bus_phone" size="20" maxlength="25"></td></tr>      
      <tr><td>Home Phone: </td><td><input type="text" name="home_phone" size="20" maxlength="25"></td></tr>      
      <tr><td>Mobile: </td><td><input type="text" name="mobile" size="30" maxlength="25"></td></tr>      
      <tr><td>Fax: </td><td><input type="text" name="fax" size="17" maxlength="15"></td></tr>      
      <tr><td>Address: </td><td><input type="text" name="street" size="30" maxlength="50"></td></tr>      
      <tr><td>City: </td><td><input type="text" name="city" size="25" maxlength="25"></td></tr>      
      <tr><td>State: </td><td><input type="text" name="customer_state" size="5" maxlength="35"></td></tr>      
      <tr><td>Postcode: </td><td><input type="text" name="postcode" size="7" maxlength="12"></td></tr>      
      <tr><td>Country: </td><td><input type="text" name="country" size="30" maxlength="40"></td></tr>      
      <tr><td>Categories: </td><td><input type="text" name="categories" size="40" maxlength="100"> (separate multiple with a : in between)</td></tr
      <tr><td>Gender</td><td><select name='gender'><option value='f'>female</option><option value='m'>male</option></select></td></tr>       <tr><td>Year of Birth: </td><td><input type="text" name="year_of_birth" size="4" maxlength="4"> (number only please)</td></tr>       <tr><td>Password: </td><td><input type="text" name="password" size="20" maxlength="50"> (optional - this is used for full integration where your customer can update their own details in enudge via your website)</td></tr>        
      <tr><td>License: </td><td><input type="text" name="license" size="30" maxlength="30" value=""></td></tr>      
      <tr><td>Message Series ID: </td><td><input type="text" name="series_id" size="10" maxlength="10" value=""> (optional - used to add the person to a particular series)</td></tr>      
      <tr><td>Return Email address: </td><td><input type="text" name="notify_email" size="50" maxlength="100" value=""> (to receive an email notification of the details of the subscriber)</td></tr>          
      <tr><td>Follow On URL: </td><td><input type="text" name="followon_url" size="50" maxlength="100" value=""> (to provide the subscriber with a URL to continue the process after successfully being added)</td></tr>          
      </table>      
      <input type="submit" name="submit" value="Subscribe">
</form> 



​ 

Did this answer your question?