Create a callfile with local channel and once first call leg is answered, use wait() and senddtmf() application on second call leg.<br><br> <br>CALLFILE sample:<br><br>Channel: LOCAL/1234\@test_ivr<br>Context: senddtmf <br>
Extension: s<br>Priority: 1 <br><br><br>Extensions.conf sample:<br><br>;-- FIRST LEG CALL --;<br>[test_ivr]<br>exten =&gt; 1234,1,Answer()<br>             same =&gt; n,Read(value,pleasePress1forSupportPress2forHelp,1,,10)<br>
             same =&gt; n,NoOp(${value})<br>             same =&gt; n,ExecIf($[${value}=1]?Goto(suppot,1))<br>             same =&gt; n,ExecIf($[${value}=2]?Goto(help,1))<br>             same =&gt; n,Hangup()<br><br>exten=&gt; support,1,Answer()<br>
             same =&gt; n,NoOp(you are at support section)<br>             same =&gt; n,Hangup()<br><br>exten=&gt; help,1,Answer()<br>             same =&gt; n,NoOp(you are at help section)<br>             same =&gt; n,Hangup()<br>
<br>;--SECOND LEG CALL --;<br>[senddtmf]<br>exten =&gt; s,1,Noop(############# TEST:IVR ##############################)<br><br>; We should wait atleast &#39;n&#39; of seconds. Where n is length of IVR file in seconds.<br>
same =&gt; n,Wait(10)<br>same =&gt; n,SendDTMF(1) <br><br><br><br><br>--SATISH BAROT<br><br><div class="gmail_quote">On Wed, Dec 28, 2011 at 1:55 PM, virendra bhati <span dir="ltr">&lt;<a href="mailto:virbhati@gmail.com">virbhati@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi list,<br><br clear="all">Is there any way in asterisk by which I make a call from server and then dialplan(IVR system) gets DTMF from it. I mean to say that automatically DTMF is sended by channels as per user defined,<br>

<br>I read there is an application sendDTMF but I don&#39;t know how we can used it?<br><br>like A script make the call by using localdail, .call file or any method. And after landing the call we send dtmf to IVR system automatically as per my script..<br>


<br><br><b>extensions.conf:-</b><br><br>exten =&gt; 1234,1,Answer()<br>             same =&gt; n,Read(value,pleasePress1forSupportPress2forHelp,1,,10)<br>             same =&gt; n,NoOp(${value})<br>             same =&gt; n,ExecIf($[${value}=1]?Goto(suppot,1))<br>

             same =&gt; n,ExecIf($[${value}=2]?Goto(help,1))<br>             same =&gt; n,Hangup()<br><br>exten=&gt; support,1,Answer()<br>             same =&gt; n,NoOp(you are at support section)<br>             same =&gt; n,Hangup()<br>

<br>exten=&gt; help,1,Answer()<br>
             same =&gt; n,NoOp(you are at help section)<br>
             same =&gt; n,Hangup()<span class="HOEnZb"><font color="#888888"><br><br><br>-- <br><div dir="ltr"><br>Thanks and regards<br><br> Virendra Bhati<br><a href="tel:%2B91-8885268942" value="+918885268942" target="_blank">+91-8885268942</a><br>

Software Engineer<br></div><br>
</font></span></div>
<br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>