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