DEV Community

Cover image for How to send an SMS using Twilio
Nevo David for novu

Posted on • Originally published at novu.co

How to send an SMS using Twilio

Communicating with users from a software application is a common feature in modern software development. Whether you provide an OTP to users before they can make transactions, send an email verification link before creating an account, mail newsletters, or send SMS notifications, you need an efficient tool that enables you to communicate with your users effectively. These are the tasks Twilio performs perfectly.

Twilio is an efficient communication tool that offers a great user experience that enables you to set up, manage, and track every communication with your users. It provides a robust API that allows you to add various forms of communication such as video chat functionality, interactive live video and audio streaming experience, phone calls, SMS, WhatsApp, emails, and chatbots to your software applications.

In addition to its well-crafted documentation, Twilio has a large community of users who create tutorials and organize events about numerous problems they have solved using Twilio and how it has contributed to the success of their businesses.

In this article, you will learn how to send messages to users via Twilio by building a Coupon Generator in Node.js. The Coupon Generator generates a random set of strings, collects the user's phone number, and sends the coupon to the user via the phone number.

Before we go further, let's learn more about a few reasons why you should choose Twilio.

Why choose Twilio?

In this section, you will learn more about why you should choose Twilio when adding a means of communication to your software applications.

Great user experience
Twilio has a great user experience. After creating an account, it provides a monitor tab on your dashboard where you can view insights into every activity you performed. Twilio's website is also easy to navigate. Despite providing quite a large number of features, it ensures that you find information about the tool you are interested in right away.

A large community of users
Twilio has a large community of users, including developers and businesses. It helps organizations such as Stripe, Lyft, Airbnb, Vacasa, and lots more to provide excellent customer service to their users. Twilio also has an active developer community that organizes workshops and creates tutorials about various problems you can solve using Twilio.

Excellent documentation
Twilio has excellent documentation, making it easy for new and existing users to navigate and learn about its features quickly. The documentation explains every tool you need and provides code samples in various programming languages. It also has a blog section where you can learn about the latest updates and features Twilio offers.

How to create a Twilio account

In this section, I will guide you through setting up a Twilio account.

  • Go to Twilio homepage and create an account. You will have to verify your email and phone number.
  • Head over to your Twilio Console once you're signed in.
  • Generate a Twilio phone number on the dashboard. This phone number is a virtual number that allows you to communicate via Twilio.
  • Copy the Twilio phone number somewhere on your computer; to be used later in the tutorial.
  • Scroll down to the Account Info section, copy and paste the Account SID and Auth Token somewhere on your computer; to be used later in this tutorial.

Once you have your Twilio phone number, Account SID and Auth Token, we can start coding the coupon generator.

Setting up a Node.js server

In this section, you will create a Node.js server and install Twilio and other necessary packages to the server.

Download and install Node.js from its website; if you do not have Node.js installed on your computer. Then create, a folder that will contain the app.

mkdir <app-name>
Enter fullscreen mode Exit fullscreen mode

Open your terminal and navigate into the folder.

cd <app–name>
Enter fullscreen mode Exit fullscreen mode

Create a package.json file by running the code below. Fill in all the required information.

npm init
Enter fullscreen mode Exit fullscreen mode

Create an index.js file - the entry point to the web application.

touch index.js
Enter fullscreen mode Exit fullscreen mode

Install Twilio, Dotenv and Express. With Dotenv, you can load private data such as API keys and passwords into a Node.js application. Express.js is a fast, minimalist framework that provides several features for building web applications in Node.js.

npm install twilio express dotenv --save
Enter fullscreen mode Exit fullscreen mode

Copy the following code into the index.js file.

const express = require('express'); //import expressjs
const app = express();
const PORT = 4000; // where the server runs

//creates a route that allows only GET request
app.get('/', (req, res) => {
    res.send('Hello world!');
});

//listens to updates made on the project and shows the status of the project
app.listen(PORT, () => {
    console.log(`⚡️[server]: Server is running at https://localhost:${PORT}`);
});
Enter fullscreen mode Exit fullscreen mode

From the code snippet above, I imported Express.js, then declared a specific port where the server runs. app.get() accepts a route as a parameter, and the forward slash represents the home page. When you visit localhost:4000 in your web browser, "Hello world!" is shown on the screen.

Run the code below in your terminal to start the Node.js server.

node index.js
Enter fullscreen mode Exit fullscreen mode

Creating the web client using Express.js

Here, we will create a web page containing a text field and a button that allows users to submit the phone number which receives the coupon code.

To create the web client, you will have to:

Update the index.js file to render HTML pages.

//--> Required imports

const express = require('express');
const PORT = process.env.PORT || 4000;
const app = express();
const path = require('path');

//--> Routes
app.get('/', (req, res) => {
  res.sendFile(path.join(__dirname + '/index.html'));
});

// --> Server listener
app.listen(PORT, () => {
    console.log(`⚡️[server]: Server is running at https://localhost:${PORT}`);
});
Enter fullscreen mode Exit fullscreen mode

Create the index.html page by running the code below.

touch index.html
Enter fullscreen mode Exit fullscreen mode

Then, update the index.html file to display a form field that accepts the user's phone number and a submit button. The form below submits the user's phone number to the "/sent" route.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coupon Generator</title>
<style>
* {
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    width: 100%;
    background-color: #f2ebe9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

h2 {
    margin-bottom: 30px;
}

input {
    padding: 15px 20px;
    border-radius: 5px;
    outline: none;
    width: 60%;
    margin: 20px 0;
}

button {
    height: 45px;
    width: 200px;
    padding: 10px 0;
    outline: none;
    border: none;
    cursor: pointer;
    color: aliceblue;
    background-color: rgb(13, 13, 90);
}
</style>
</head>

<body>
        <h2>Receive coupons</h2>
        <form method="POST" action="/sent">
            <label for="number">
                Enter your phone number - {+ country code and number}
            </label>
        <input type="tel" id="number" placeholder="+234-998975216" name="number"/>
        <button>SUBMIT</button>
    </form>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Add a "/sent" route to the index.js file as done below. This route will accept the user's phone number and send the coupon to the phone number.

app.post('/sent', (req, res) => {
    res.send('Your coupon has been sent to your number!');
});
Enter fullscreen mode Exit fullscreen mode

Next, run the server to make sure there are no errors.

node index.js
Enter fullscreen mode Exit fullscreen mode

Connecting the web client to Twilio

Here, you will learn how to get users' phone numbers from a web page and send SMS to their phones using Twilio.

To access the user's phone number on the backend server, the body-parser configuration is required. This configuration allows you to access inputs from a form field.

//--> index.js
//Should be placed above the app.get() and app.post() routes
app.use(express.urlencoded({ extended: true }));
Enter fullscreen mode Exit fullscreen mode

Edit the app.post("/sent") and try logging the user's number to the terminal.

app.post('/sent', (req, res) => {
    const { number } = req.body;
    console.log(number);
    res.send('Your coupon has been sent to your number!');
});
Enter fullscreen mode Exit fullscreen mode

Next, I will guide you through creating the coupon and sending it to the user's phone number.

First of all, create a function that generates a random set of strings - the coupon code.

const fetchCoupon = () => {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    const year = new Date().getFullYear().toString();
    let coupon = [];
    for (let i = 0; i < 6; i++) {
        let index = Math.floor(Math.random() * alphabets.length);
        coupon.push(alphabets.charAt(index));
    }
    return coupon.join('') + year;
};
Enter fullscreen mode Exit fullscreen mode

From the code snippet above, the alphabet variable is a string containing all the letters in the English alphabet. The year variable gets the current year and converts it to a string. The loop fetches a random set containing six letters and adds them to the coupon variable. All the random letters in the coupon array are converted to strings, concatenated then returned together with the current year as a single string.

Create a .env file containing the Twilio configuration keys.

TWILIO_ACCOUNT_SID=<account_SID>
TWILIO_AUTH_TOKEN=<auth_token>
TWILIO_PHONE_NUMBER=<twilio_phone_number>
Enter fullscreen mode Exit fullscreen mode

Import the configuration keys into the index.js file via Dotenv.


require('dotenv').config(); //imports dotenv
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const myTwilioNumber = process.env.TWILIO_PHONE_NUMBER;
const client = require('twilio')(accountSid, authToken);
Enter fullscreen mode Exit fullscreen mode

The dotenv package enables us to access data stored in environment variables, which is required for sending messages via Twilio.

Update the app.post("/sent") route to the code below.

app.post('/sent', (req, res) => {
    const { number } = req.body;
    client.messages.create({
            body: fetchCoupon(),
            from: myTwilioNumber,
            to: number
}).then((message) => console.log(message, sid));
    res.send('Your coupon has been sent to your number!');
});
Enter fullscreen mode Exit fullscreen mode

client.messages.create() accepts an object containing three keys - body, from, and to. The body key contains the content of the message, a string value returned from function fetchCoupon. The to and from attributes represent the sender and the recipient.

Congratulations! you've just completed this project.

Conclusion

In this tutorial, you've learnt how to generate a set of random strings that is relevant to different use cases, such as generating API keys for your products and also how to send SMS via Twilio.

Twilio enables you to add various forms of communication to software applications effortlessly. It has helped several organizations, including Stripe, Lyft, and Airbnb, establish excellent customer relationships with their users.

If you need a tool that supports multiple forms of communication with your users using SMS, voice, email, video, or WhatsApp, Twilio is an excellent choice.

You can check the full source code here:
https://github.com/novuhq/blog/tree/main/sending%20SMS%20via%20Twilio

Novu

Novu is the first open-source notification infrastructure for developers. If you want to leverge the power of Twilio with an entire notification infrastructure, check out our library at: https://github.com/novuhq/novu

Thank you for reading!

Oldest comments (3)

Collapse
 
ayobami profile image
David

Thank you very much, I loved the explanation, it was very easy to follow.

Collapse
 
nevodavid profile image
Nevo David

You are welcome! Let me know if you need any help 🚀

Collapse
 
adriens profile image
adriens

Nice post....and yes Twilio docs really rocks !