lunes, 18 de mayo de 2020

Re: Multiple conference call

Re: Multiple conference call

Postby mflorell » Sun May 10, 2020 4:24 pm
The agent screen is only designed to keep track of one 3way call at a time, but we do have several clients that have use the SCRIPT tab with a custom-coded IFRAME script to be able to add multiple other phone calls to the agent session at one time, so it can be done, just not using only standard features.

viernes, 15 de mayo de 2020

VICIDIAL email dispo

This send the email  everytime the agent get a call


Start Call URL: VARhttp://150.138.193.13/email.php?name=--A--first_name--B--&last_name=--A--last_name--B--&street1=--A--address1--B--&street2=--A--address2--B--&city=--A--city--B--&phone=--A--phone_number--B--&state=--A--state--B--&postal_code=--A--postal_code--B--



This send the email  for  call transferred

Dispo Call URL:  VARhttp://15.138.193.31/email.php?name=--A--first_name--B--&last_name=--A--last_name--B--&street1=--A--address1--B--&street2=--A--address2--B--&city=--A--city--B--&phone=--A--phone_number--B--&state=--A--state--B--&postal_code=--A--postal_code--B--&sale_status=--A--dispo--B--&log_to_file=1



script
/srv/www/htdocs/email.php



<?php
print_r($_GET);
$subject="Vici email";
$body="";

foreach($_GET as $value){
$body.="$value\n";
}
system("echo \"$body\" | mail -s \"$subject\" ambiorixg12@gmail.com");

?>

https://github.com/inktel/Vicidial/blob/master/docs/CALL_URL_FEATURES.txt

martes, 24 de marzo de 2020

Dispo call URL

Dispo Call URL 
VARhttp://66.42.96.183/salesforce/post.php?first_name=--A--first_name--B--&last_name=--A--last_name--B--&email=--A--email--B--&company=asterisk&state=--A--state--B--&phone=--A--phone_number--B--&street=--A--address1--B--&oid=00D6g000008Nog6&sale_status=SALE&log_to_file=1

This works on SALE status




PHP

<?php
print_r($_GET);
echo shell_exec("curl -d \"first_name=$_GET[first_name]&last_name=$_GET[last_name]&email=$_GET[email]&company=$_GET[company]&city=$_GET[city]&state=$_GET[state]&phone=$_GET[phone]&street=$_GET[street]&oid=$_GET[oid]\" \"https://webto.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8\" ");
foreach($_GET as $key=>$value) {
echo system("echo '$value' > /srv/www/htdocs/salesforce/post.log ");
}
?> /srv/www/htdocs/salesforce/post.php

martes, 7 de enero de 2020

Re: Automatic callbacks

Re: Automatic callbacks

Postby mflorell » Thu Feb 07, 2019 7:39 am
Actually, there is a campaign feature that can do this:

Scheduled Callbacks Force Dial -
This feature will force an agent to a paused state and block out their screen with the next triggered USERONLY scheduled callback to be called. The agent's only option will be to dial this callback, although they are able to look at lead info before they do that. If there are multiple triggered scheduled callbacks for the agent, they all must be called before the agent can move on to handling other items. This feature will not pay attention to the Call Time that is set for the campaign, so these calls may be dialed outside of the set call time. The agent must be able to place manual dial calls for this feature to work. Default is N for disabled.

lunes, 9 de diciembre de 2019

https://codelabs.developers.google.com/codelabs/bar-codes/#0

https://codelabs.developers.google.com/codelabs/bar-codes/#0

Android Basic concepts