SMS

Learn how to programmatically send messages, using Twilio and Node.js.

Now that you have dealt with sending emails, why not expand your horizons by doing a similar thing with SMS (Short Message Service)? You can create a quick script to send an SMS.

Setting up a Twilio account

An excellent service, known as Twilio, allows you to buy a phone number and programmatically send messages. Luckily for you, they offer a free trial account, which will enable you to get a free phone number to send messages from. The catch is that the trial account will only allow you to send messages to verified phone numbers, i.e. the numbers that you have added to your account and confirmed with the verification code they send to that number.

You have ...