<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Predictive Dialer &#124; Call Center Software &#187; lead vendor integrated dialer</title>
	<atom:link href="http://voicent.com/predictive-dialer/blog/index.php/tag/lead-vendor-integrated-dialer/feed" rel="self" type="application/rss+xml" />
	<link>https://voicent.com/predictive-dialer/blog</link>
	<description>Predictive Dialing Software for Call Center Agents</description>
	<lastBuildDate>Fri, 13 Jan 2023 22:55:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>BrokerOffice Integrated Dialing Software</title>
		<link>https://voicent.com/predictive-dialer/blog/index.php/predictive-dialer/818/brokeroffice-integrated-dialing-software</link>
		<comments>https://voicent.com/predictive-dialer/blog/index.php/predictive-dialer/818/brokeroffice-integrated-dialing-software#comments</comments>
		<pubDate>Wed, 12 Feb 2014 00:16:48 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Predictive Dialer]]></category>
		<category><![CDATA[broker office integration]]></category>
		<category><![CDATA[integrated predictive dialer]]></category>
		<category><![CDATA[lead vendor integrated dialer]]></category>

		<guid isPermaLink="false">http://voicent.com/predictive-dialer/blog/?p=818</guid>
		<description><![CDATA[I am currently using BrokerOffice which is an insurance lead vendor and the difference between them and other lead providers is that they will send the lead directly to my current dialer as they receive it. It is literally a &#8230; <a href="https://voicent.com/predictive-dialer/blog/index.php/predictive-dialer/818/brokeroffice-integrated-dialing-software">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>I am currently using <strong>BrokerOffice </strong>which is an insurance lead vendor and the difference between them and other lead providers is that they will send the lead directly to my current dialer as they receive it. It is literally a &#8220;real time&#8221; lead. Does Voicent support <strong>BrokerOffice</strong>? More information on <strong>BrokerOffice </strong>is available here: https://www.brokeroffice.com/</p></blockquote>
<p>Yes we do! We currently have a handful of users actively using Voicent&#8217;s software with <strong>BrokerOffice</strong>, below is a list of our tools that fully work with <strong>BrokerOffice</strong>:</p>
<ul>
<li> <a href="http://voicent.com/predictive-dialer.php">Agent Dialer(Predictive Dialer)</a></li>
<li><a href="http://voicent.com/autodialers.php">BroadcastByPhone(AutoDialer)</a></li>
<li> <a href="http://voicent.com/sms-text-message.php">BroadcastBySMS(SMS Text messages)</a></li>
<li><a href="http://voicent.com/email-marketing.php">BroadcastByEmail(Email broadcasting)</a></li>
</ul>
<p>When setting up integration with <strong>BrokerOffice</strong>, please follow the below article:</p>
<ul>
<li>Download and install a web server like: <a href="http://www.apachefriends.org/index.html">xampp</a>.</li>
<li>Once installed, setup your Voicent CRM and give the CRM a password, you will need the password later on.</li>
<li>Write down the IP Address to your Voicent Gateway, you will need this later.</li>
<li>Copy the code below and change $voicent_gateway and $voicent_crm_password respectively.</li>
<li>Save the file as &#8216;brokeroffice.php&#8217; in your C:\xampp\htdocs\ directory</li>
<li>Update <strong>BrokerOffice </strong>with the URL path for the webpage you just put on your webserver.</li>
<li>Lastly, make sure you create a custom contact category in Voicent CRM named &#8216;BrokerOffice&#8217;</li>
</ul>
<p><code><br />
&lt; ?php</code></p>
<p><code>$voicent_gateway = 'localhost';<br />
$voicent_crm_password = 'crm';</p>
<p>$lead_id = 'null';</p>
<p>if(isset($_POST['lead_id']))<br />
$lead_id = $_POST['lead_id'];</p>
<p>$timestamp = 'null';</p>
<p>if(isset($_POST['timestamp']))<br />
$timestamp = $_POST['timestamp'];</p>
<p>$first_name = 'null';</p>
<p>if(isset($_POST['first_name']))<br />
$first_name = $_POST['first_name'];</p>
<p>$last_name = 'null';</p>
<p>if(isset($_POST['last_name']))<br />
$last_name = $_POST['last_name'];</p>
<p>$email = 'null';</p>
<p>if(isset($_POST['email']))<br />
$email = $_POST['email'];</p>
<p>$day_phone = 'null';</p>
<p>if(isset($_POST['day_phone']))<br />
$day_phone = $_POST['day_phone'];</p>
<p>$evening_phone = 'null';</p>
<p>if(isset($_POST['evening_phone']))<br />
$evening_phone = $_POST['evening_phone'];</p>
<p>$fax = 'null';</p>
<p>if(isset($_POST['fax']))<br />
$fax = $_POST['fax'];</p>
<p>$street1 = 'null';</p>
<p>if(isset($_POST['street1']))<br />
$street1 = $_POST['street1'];</p>
<p>$street2 = 'null';</p>
<p>if(isset($_POST['street2']))<br />
$street2 = $_POST['street2'];</p>
<p>$city = 'null';</p>
<p>if(isset($_POST['city']))<br />
$city = $_POST['city'];</p>
<p>$state = 'null';</p>
<p>if(isset($_POST['state']))<br />
$state = $_POST['state'];</p>
<p>$zipcode = 'null';</p>
<p>if(isset($_POST['zipcode']))<br />
$zipcode = $_POST['zipcode'];</p>
<p>$ip_address = 'null';</p>
<p>if(isset($_POST['ip_address']))<br />
$ip_address = $_POST['ip_address'];</p>
<p>$currently_insured = 'null';</p>
<p>if(isset($_POST['currently_insured']))<br />
$currently_insured = $_POST['currently_insured'];</p>
<p>$contact_time = 'null';</p>
<p>if(isset($_POST['contact_time']))<br />
$contact_time = $_POST['contact_time'];</p>
<p>$medications = 'null';</p>
<p>if(isset($_POST['medications']))<br />
$medications = $_POST['medications'];</p>
<p>$conditions = 'null';</p>
<p>if(isset($_POST['conditions']))<br />
$conditions = $_POST['conditions'];</p>
<p>$applicant_dob = 'null';</p>
<p>if(isset($_POST['applicant_dob']))<br />
$applicant_dob = $_POST['applicant_dob'];</p>
<p>$applicant_gender = 'null';</p>
<p>if(isset($_POST['applicant_gender']))<br />
$applicant_gender = $_POST['applicant_gender'];</p>
<p>$applicant_heightFT = 'null';</p>
<p>if(isset($_POST['applicant_heightFT']))<br />
$applicant_heightFT = $_POST['applicant_heightFT'];</p>
<p>$applicant_heightIN = 'null';</p>
<p>if(isset($_POST['applicant_heightIN']))<br />
$applicant_heightIN = $_POST['applicant_heightIN'];</p>
<p>$applicant_smoker = 'null';</p>
<p>if(isset($_POST['applicant_smoker']))<br />
$applicant_smoker = $_POST['applicant_smoker'];</p>
<p>$applicant_weight = 'null';</p>
<p>if(isset($_POST['applicant_weight']))<br />
$applicant_weight = $_POST['applicant_weight'];</p>
<p>$spouse_dob = 'null';</p>
<p>if(isset($_POST['spouse_dob']))<br />
$spouse_dob = $_POST['spouse_dob'];</p>
<p>$spouse_gender = 'null';</p>
<p>if(isset($_POST['spouse_gender']))<br />
$spouse_gender = $_POST['spouse_gender'];</p>
<p>$spouse_heightFT = 'null';</p>
<p>if(isset($_POST['spouse_heightFT']))<br />
$spouse_heightFT = $_POST['spouse_heightFT'];</p>
<p>$spouse_heightIN = 'null';</p>
<p>if(isset($_POST['spouse_heightIN']))<br />
$spouse_heightIN = $_POST['spouse_heightIN'];</p>
<p>$spouse_smoker = 'null';</p>
<p>if(isset($_POST['spouse_smoker']))<br />
$spouse_smoker = $_POST['spouse_smoker'];</p>
<p>$spouse_weight = 'null';</p>
<p>if(isset($_POST['spouse_weight']))<br />
$spouse_weight = $_POST['spouse_weight'];</p>
<p>$child_1_dob = 'null';</p>
<p>if(isset($_POST['child_1_dob']))<br />
$child_1_dob = $_POST['child_1_dob'];</p>
<p>$child_1_age = 'null';</p>
<p>if(isset($_POST['child_1_age']))<br />
$child_1_age = $_POST['child_1_age'];</p>
<p>$child_1_gender = 'null';</p>
<p>if(isset($_POST['child_1_gender']))<br />
$child_1_gender = $_POST['child_1_gender'];</p>
<p>$child_1_heightFT = 'null';</p>
<p>if(isset($_POST['child_1_heightFT']))<br />
$child_1_heightFT = $_POST['child_1_heightFT'];</p>
<p>$child_1_heightIN = 'null';</p>
<p>if(isset($_POST['child_1_heightIN']))<br />
$child_1_heightIN = $_POST['child_1_heightIN'];</p>
<p>$child_1_weight = 'null';</p>
<p>if(isset($_POST['child_1_weight']))<br />
$child_1_weight = $_POST['child_1_weight'];</p>
<p>$child_2_dob = 'null';</p>
<p>if(isset($_POST['child_2_dob']))<br />
$child_2_dob = $_POST['child_2_dob'];</p>
<p>$child_2_age = 'null';</p>
<p>if(isset($_POST['child_2_age']))<br />
$child_2_age = $_POST['child_2_age'];</p>
<p>$child_2_gender = 'null';</p>
<p>if(isset($_POST['child_2_gender']))<br />
$child_2_gender = $_POST['child_2_gender'];</p>
<p>$child_2_heightFT = 'null';</p>
<p>if(isset($_POST['child_2_heightFT']))<br />
$child_2_heightFT = $_POST['child_2_heightFT'];</p>
<p>$child_2_heightIN = 'null';</p>
<p>if(isset($_POST['child_2_heightIN']))<br />
$child_2_heightIN = $_POST['child_2_heightIN'];</p>
<p>$child_2_weight = 'null';</p>
<p>if(isset($_POST['child_2_weight']))<br />
$child_2_weight = $_POST['child_2_weight'];</p>
<p>$child_3_dob = 'null';</p>
<p>if(isset($_POST['child_3_dob']))<br />
$child_3_dob = $_POST['child_3_dob'];</p>
<p>$child_3_age = 'null';</p>
<p>if(isset($_POST['child_1_age']))<br />
$child_3_age = $_POST['child_3_age'];</p>
<p>$child_3_gender = 'null';</p>
<p>if(isset($_POST['child_3_gender']))<br />
$child_3_gender = $_POST['child_3_gender'];</p>
<p>$child_3_heightFT = 'null';</p>
<p>if(isset($_POST['child_3_heightFT']))<br />
$child_3_heightFT = $_POST['child_3_heightFT'];</p>
<p>$child_3_heightIN = 'null';</p>
<p>if(isset($_POST['child_3_heightIN']))<br />
$child_3_heightIN = $_POST['child_3_heightIN'];</p>
<p>$child_3_weight = 'null';</p>
<p>if(isset($_POST['child_3_weight']))<br />
$child_3_weight = $_POST['child_3_weight'];</p>
<p>$child_4_dob = 'null';</p>
<p>if(isset($_POST['child_4_dob']))<br />
$child_4_dob = $_POST['child_4_dob'];</p>
<p>$child_4_age = 'null';</p>
<p>if(isset($_POST['child_4_age']))<br />
$child_4_age = $_POST['child_4_age'];</p>
<p>$child_4_gender = 'null';</p>
<p>if(isset($_POST['child_4_gender']))<br />
$child_4_gender = $_POST['child_4_gender'];</p>
<p>$child_4_heightFT = 'null';</p>
<p>if(isset($_POST['child_4_heightFT']))<br />
$child_4_heightFT = $_POST['child_4_heightFT'];</p>
<p>$child_4_heightIN = 'null';</p>
<p>if(isset($_POST['child_4_heightIN']))<br />
$child_4_heightIN = $_POST['child_4_heightIN'];</p>
<p>$child_4_weight = 'null';</p>
<p>if(isset($_POST['child_4_weight']))<br />
$child_4_weight = $_POST['child_4_weight'];</p>
<p>$child_5_dob = 'null';</p>
<p>if(isset($_POST['child_5_dob']))<br />
$child_5_dob = $_POST['child_5_dob'];</p>
<p>$child_5_age = 'null';</p>
<p>if(isset($_POST['child_5_age']))<br />
$child_5_age = $_POST['child_5_age'];</p>
<p>$child_5_gender = 'null';</p>
<p>if(isset($_POST['child_5_gender']))<br />
$child_5_gender = $_POST['child_5_gender'];</p>
<p>$child_5_heightFT = 'null';</p>
<p>if(isset($_POST['child_5_heightFT']))<br />
$child_5_heightFT = $_POST['child_5_heightFT'];</p>
<p>$child_5_heightIN = 'null';</p>
<p>if(isset($_POST['child_5_heightIN']))<br />
$child_5_heightIN = $_POST['child_5_heightIN'];</p>
<p>$child_5_weight = 'null';</p>
<p>if(isset($_POST['child_5_weight']))<br />
$child_5_weight = $_POST['child_5_weight'];</p>
<p>$child_6_dob = 'null';</p>
<p>if(isset($_POST['child_6_dob']))<br />
$child_6_dob = $_POST['child_6_dob'];</p>
<p>$child_6_age = 'null';</p>
<p>if(isset($_POST['child_6_age']))<br />
$child_6_age = $_POST['child_6_age'];</p>
<p>$child_6_gender = 'null';</p>
<p>if(isset($_POST['child_6_gender']))<br />
$child_6_gender = $_POST['child_6_gender'];</p>
<p>$child_6_heightFT = 'null';</p>
<p>if(isset($_POST['child_6_heightFT']))<br />
$child_6_heightFT = $_POST['child_6_heightFT'];</p>
<p>$child_6_heightIN = 'null';</p>
<p>if(isset($_POST['child_6_heightIN']))<br />
$child_6_heightIN = $_POST['child_6_heightIN'];</p>
<p>$child_6_weight = 'null';</p>
<p>if(isset($_POST['child_6_weight']))<br />
$child_6_weight = $_POST['child_6_weight'];</p>
<p>$child_1_dob = $child_1_dob . '|' . $child_2_dob . '|' . $child_3_dob . '|' . $child_4_dob . '|' . $child_5_dob . '|' . $child_6_dob;<br />
$child_1_age = $child_1_age . '|' . $child_2_age . '|' . $child_3_age . '|' . $child_4_age . '|' . $child_5_age . '|' . $child_6_age;<br />
$child_1_gender = $child_1_gender . '|' . $child_2_gender . '|' . $child_3_gender . '|' . $child_4_gender . '|' . $child_5_gender . '|' . $child_6_gender;<br />
$child_1_heightFT = $child_1_heightFT . 'FT ' . $child_1_heightIN . 'IN|' . $child_2_heightFT . 'FT ' . $child_2_heightIN . 'IN|' . $child_3_heightFT . 'FT ' . $child_3_heightIN . 'IN|';<br />
$child_1_heightFT .= $child_4_heightFT . 'FT ' . $child_4_heightIN . 'IN|' . $child_5_heightFT . 'FT ' . $child_5_heightIN . 'IN|' . $child_6_heightFT . 'FT ' . $child_6_heightIN . 'IN';<br />
$child_1_weight = $child_1_weight . '|' . $child_2_weight . '|' . $child_3_weight . '|' . $child_4_weight . '|' . $child_5_weight . '|' . $child_6_weight;</p>
<p>$spouse_heightFT = $spouse_heightFT.'FT ' . $spouse_heightIN . 'IN';<br />
$applicant_heightFT = $applicant_heightFT . 'FT ' . $applicant_heightIN . 'IN';</p>
<p>$url = 'http://' . $voicent_gateway . ':8155/vxcrm.jsp';<br />
$fields = array('action' =&gt; 'add',<br />
'passwd' =&gt; $voicent_crm_password,<br />
'dcuser' =&gt; '0',<br />
'first_name' =&gt; urlencode($first_name),<br />
'last_name' =&gt; urlencode($last_name),<br />
'email' =&gt; urlencode($email),<br />
'home_phone' =&gt; urlencode($day_phone),<br />
'work_phone' =&gt; urlencode($evening_phone),<br />
'fax' =&gt; urlencode($fax),<br />
'cf_1' =&gt; urlencode($currently_insured),<br />
'cf_2' =&gt; urlencode($contact_time),<br />
'cf_3' =&gt; urlencode($medications),<br />
'cf_4' =&gt; urlencode($conditions),<br />
'cf_5' =&gt; urlencode($applicant_dob),<br />
'cf_6' =&gt; urlencode($applicant_gender),<br />
'cf_7' =&gt; urlencode($applicant_heightFT),<br />
'cf_8' =&gt; urlencode($applicant_smoker),<br />
'cf_9' =&gt; urlencode($applicant_weight),<br />
'cf_10' =&gt; urlencode($spouse_dob),<br />
'cf_11' =&gt; urlencode($spouse_gender),<br />
'cf_12' =&gt; urlencode($spouse_heightFT),<br />
'cf_13' =&gt; urlencode($spouse_smoker),<br />
'cf_14' =&gt; urlencode($spouse_weight),<br />
'cf_15' =&gt; urlencode($ip_address),<br />
'cf_16' =&gt; urlencode($child_1_age),<br />
'cf_17' =&gt; urlencode($child_1_gender),<br />
'cf_18' =&gt; urlencode($child_1_heightFT),<br />
'cf_19' =&gt; urlencode($child_1_weight),<br />
'cf_20' =&gt; urlencode($child_1_dob),<br />
'customer_catname' =&gt; urlencode('BrokerOffice')<br />
);</p>
<p>//url-ify the data for the POST<br />
$fields_string = '';<br />
foreach($fields as $key=&gt;$value) { $fields_string .= $key.'='.$value.'&amp;'; }<br />
rtrim($fields_string, '&amp;');</p>
<p>//open connection<br />
$ch = curl_init();</p>
<p>//set the url, number of POST vars, POST data<br />
curl_setopt($ch,CURLOPT_URL, $url);<br />
curl_setopt($ch,CURLOPT_POST, count($fields));<br />
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);</p>
<p></code></p>
<p><code>//execute post<br />
$result = curl_exec($ch);<br />
echo $result;<br />
//close connection<br />
curl_close($ch);<br />
?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>https://voicent.com/predictive-dialer/blog/index.php/predictive-dialer/818/brokeroffice-integrated-dialing-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
