我正在尝试将当前通话转移到其他工作人员,但我的电话不会通过。也许我错过了什么。
$response = new Services_Twilio_Twiml;
$response->say(
'Your call is now being redirected',
['voice' => 'alice', 'language' => 'en-GB']
);
$dial = $response->dial();
$dial->client('client:agentjoe');
print $response;