Getting started

To start sending SMS with Ruby you need to do the following:

  1. Create a 46elks account
  2. Purchase some credits. (The minimum purchase is 10 EUR, which is more than enough to get started.)
  3. Locate your API-credentials

Write your code with Ruby

Finally, it's time to write some Ruby. Your code needs to be able to do the following:

There are many ways to implement this in Ruby. This is an example of how it can be done using only the standard libraries:


    

The example is tested in Ruby 2.1.2

Use the Ruby example by creating a send.rb file and copy/paste the example code above to the file. Change the following variables to your own values:

Some tips on SMS parameter formatting:

The basic API request to send an SMS must contain these three key:value pairs: to, from and message.

  • The to parameter should be the E.164 formatted number of the recipient.
    Example: +46766861004.

  • The from parameter should be either an E.164 number or a string. That string is often called "Text sender ID" or "alphanumeric sender ID".
    Example: +46766861004, ElkCo

  • The message parameter is the content of the SMS itself and can consist of numbers, letters, and other characters. You can even send emojis.
    Exemple: How was this interview, 👌🏽 or 👎🏽 ?

Now, execute you script by using the command ruby send.rband your phone will buzz. Congratulations, you've just sent an SMS from Ruby.

Next step

You've just sent a text message with a text sender (i.e. not from a phone number). By doing this you can use SMS to remind customers of reservations, send confirmations of new orders, etc.

To send an SMS is the easiest way to get started with 46elks, but you can do so much more. For example you can receive SMS, automatically respond to an incoming SMS or handle voice calls. For this and more there are a load of Ruby code examples at GitHub.

If you have any questions then get in touch, we love talking to our users!