1 / 20

VoIP Drupal How to build an SMS service using a local phone number

VoIP Drupal How to build an SMS service using a local phone number. Tamer Zoubi Technical Lead at TerraVoz tamerzg@terravoz.org. History. The first beta version of VoIP Drupal was launched in March 2011. 20+ contrib modules until now

airlia
Download Presentation

VoIP Drupal How to build an SMS service using a local phone number

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. VoIP DrupalHow to build an SMS service using a local phone number Tamer Zoubi Technical Lead at TerraVoz tamerzg@terravoz.org

  2. History • The first beta version of VoIP Drupal was launched in March 2011. • 20+ contrib modules until now • We are currently promoting the platform and building more systems on top of it. • Supported by TerraVoz, a spin-off from the MIT Media Lab

  3. VoIP Drupal is… • A software platform that enables Drupal sites to • Make and answer phone calls • Play and record audio messages • Send and receive SMS • Organize conference calls • Implement voice menus and call routing • Run polls, surveys, and many more things

  4. VoIP Drupal modules sms framework

  5. How things work

  6. VoIP script commands • Dialnumber • Saytext or audio file • Record audio from phone • GetInputfrom keypad • JoinConference • RejectCall • Hangup • SendTextnumber, message • RunIvrMenuoptions • Gotolabel • GotoIflabel, condition • Gosubscript name

  7. Hello world $script = new VoipScript('hello_world'); $script->addSay('hello world'); $script->addHangup();

  8. $script = new VoipScript('voipscript_small_office_ivr'); $script->addSay(t('Welcome to our office hotline.’)); $script->addLabel(‘office_menu’); $options_menu = t(‘For sales, dial 1. For customer support, dial 2. For hours of operation, dial 3. To hang up, dial the star key.’); $input_options = array( ‘1’ => ‘sales’, ‘2’ => ‘customer support’, ‘3’ => ‘hours’, ‘*’ => ‘hang up’, ‘I’ => ‘hang up’, ‘t’ => ‘hang up’ ); $invalid_msg = t(‘Invalid option selected.’); $script->addRunIvrMenu($options_menu, $input_options, $invalid_msg); $script->addGoto(‘%ivr_option_selected’); $script->addLabel(‘sales’); $script->addSay(‘Sales department’); $script->addGoto(‘hang up’); $script->addLabel(‘customer support’); $script->addSay(t(‘Customer support department’)); $script->addGoto(‘hang up’); $script->addLabel(‘hours’); $script->addSay(t(‘Our office is open Monday to Friday from 9am to 5pm.’)); $script->addGoto(‘office_menu’); $script->addLabel(‘hang up’); $script->addSay(t(‘Thanks so much for calling our office. Bye bye.')); $script->addHangup(); Office hotline

  9. Visual VoIP Drupal

  10. Key benefits of the platform • Facilitates the construction of unified communications systems integrating SMS, email, web, and voice • Makes Drupal accessible from any phone – no data plan required! • Enables the expansion of “community plumbing” beyond the web • Is open source and free – you are in control

  11. Benefits for administrators • Easy installation and configuration – no programming required • Fully customizable – enable only the features you need • Run as part of the Drupal system itself • Enable access to VoIP Drupal features using roles and permissions • Assign Rules, Actions and Triggers • Enhance user interaction with ready-to-use audio blogs, click-to-call fields, phone recorders, audio announcements, etc. • Visual programming language for non-coders. (http://drupal.org/project/vvd)

  12. Benefits for developers • Well defined API that can be extended to other VoIP services • 20+ sample scripts that can be customized • 20+ modules that already implement common functionality – no need to reinvent the wheel • Simple, yet powerful PHP-like scripting language with a short learning curve • Easily switch to another VoIP provider without porting your applications.

  13. VoIP Drupal and SMS Framework • Build an SMS service • Use a local phone number in ANY country in the world, including Croatia. • Send and receive text messages with your customers, employees, beneficiaries, or anyone else

  14. Requirements • Drupal 7 (http://drupal.org/download) • SMS Framework (http://drupal.org/project/smsframework) • Envaya SMS (http://drupal.org/project/sms_envaya) • VoIP Drupal (http://drupal.org/project/voipdrupal) • Envaya Android App (http://sms.envaya.org/install)

  15. Configuring EnvayaSMS

  16. Configuring Drupal side DEMO

  17. Careers • TerraVoz is looking for highly energetic part-time developers to join our team. • Telecommute from your home. • Apply at http://terravoz.org/careers

  18. Useful links • Source code: http://drupal.org/project/voipdrupal • General documentation: http://drupal.org/node/1078710 • API information: http://drupal.org/node/1155572 • Sandbox: http://voipdrupal.org • Discussion group: http://groups.drupal.org/voip-drupal

  19. Questions?

  20. Thank you!

More Related