Transfer requests from web pages to the CRM

If you have your own web site with a contact form you may transfer the content as Lead to your CRM. For the transmission you may take advantage of the Webservice functions. The following example shows how a webform for the transmission of name, email and description can look like:

<html>
 <body>
   <form method="POST" action="https://yoururl/modules/Webforms/post.php">
	<input type="hidden" value="Leads" name="moduleName" />
	<table>
	 <tr>
	   <td><label>Familyname</label></td>
	   <td><input type="text" name="lastname" value="" /></td>
         </tr>
	 <tr>
	<tr>
	  <td><label>Email</td>
	  <td><input type="text" name="email" value="" /></td>
	</tr>
	<tr >
	  <td><label>Message:</label></td>
	  <td><textarea cols="30" rows="5" name="description" value="" ></textarea></td>
	</tr>
   <table>
  <input type="submit" value="Submit" />
 </form>
<body>

Please contact crm-now for more information.

1 thought on “Transfer requests from web pages to the CRM

Leave a Reply