Hi,
Please could I ask for some help ?
I would like to generate a series of DTMF tones ?
I can generate a single tone with the following PHP:
$m = new Yate("chan.dtmf");
$m->params["targetid"] = $this->channel_id;
$m->params["text"] = '1234';
$m->Dispatch();
However if I try a string, for example '1234', it appears to play them, but very quickly, almost on top of each-other.
I've been trying to insert a pause using the usual suspects like 'p', ',' etc, but no luck, it doesn't work.
Is the method I've described above possible or should I be looking at another solution ?
Thank you!
Jamie
( Installation is Windows )