1
Yate IVR / Re: How to make calls from IVR to external phone number (PHP)
« on: March 05, 2015, 02:09:48 PM »
I change
yate.conf --> modload=no. and the IVR not work
yate.conf --> modload=no. and the IVR not work
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
function MakeCall($route) {
global $saved_ev;
$called = $saved_ev->GetValue("sip_from");
$partycallid = $saved_ev->GetValue("id");
$m = new Yate("chan.masquerade");
$m->params = $saved_ev->params;
$m->params["message"] = "call.execute";
$m->params["callto"] = "5717455171";
$m->params["id"] = $partycallid;
$m->Dispatch();
}