I have a dialplan which takes incoming call from User1 and forward it to other User2. I want to apply a confrence when user1 calls it should be forwaded to User2 and after pressing a dtmf by User2 then User1 and User 2 should enter into confrence with User3 Is it possible,I know there is a Meetme() function but i cant find how to set the user dynamically
Below is the sample code (in order to understand what i want to do)
exten =>101,1,Answer()
exten =>101,n,Playback(welcome)
exten =>101,n,Dial(DADHI/User2)
exten =>2,1,Dial(DADHI/User3) ;on pressing dtmf 2 by user2 this line will execute
exten =>2,n,Meetme(8060)
Is the above code correct way to take users into conference.Correct me if i am wrong.
And if anybody have any solution to the above problem please do help. Thanks