Menu

Expand
Rate this page:

Appointment Reminders with C# and ASP.NET MVC

Ahoy! We now recommend you build your SMS appointment reminders with Twilio's built in Message Scheduling functionality. Head on over to the Message Resource documentation to learn more about scheduling SMS messages!

Ready to implement appointment reminders in your application? Here's how it works:

  1. An administrator creates an appointment for a future date and time, and stores a customer's phone number in the database for that appointment
  2. A background process checks the database on a regular interval, looking for appointments that require a reminder to be sent out
  3. At a configured time in advance of the appointment, an SMS reminder is sent out to the customer to remind them of their appointment

Check out how Yelp uses SMS to confirm restaurant reservations for diners.

Building Blocks

Here are the technologies we'll use to get this done:

  • ASP.NET MVC to create a database-driven web application
  • The Messages Resource from Twilio's REST API to send text messages
  • Hangfire to help us schedule and execute background tasks on a recurring basis


In this tutorial, we'll point out key snippets of code that make this application work. Check out the project README on GitHub to see how to run the code yourself.

How To Read This Tutorial

To implement appointment reminders, we will be working through a series of user stories that describe how to fully implement appointment reminders in a web application. We'll walk through the code required to satisfy each story, and explore what we needed to add on each step.

All this can be done with the help of Twilio in under half an hour.

Let's get started!

Creating an Appointment

As a user, I want to create an appointment with a name, guest phone numbers, and a time in the future.

In order to build an automated appointment reminder application, we probably should start with an appointment. This story requires that we create a bit of UI and a model object to create and save a new Appointment in our system. At a high level, here's what we will need to add:

  • A form to enter details about the appointment
  • A route and controller function on the server to render the form
  • A route and controller function on the server to handle the form POST request
  • A persistent Appointment model object to store information about the user

Alright, so we know what we need to create a new appointment. Now let's start by looking at the model, where we decide what information we want to store with the appointment.

Visit our Appointment model

Appointment Model

The appointment model is fairly straightforward, but since humans will be interacting with it let's make sure we add some data validation.

Our application relies on ASP.NET Data Annotations. In our case, we only want to validate that some fields are required. To accomplish this we'll use [Required] data annotation.

By default, ASP.NET MVC displays the property name when rendering a control. In our example those property names can be Name or PhoneNumber. For rendering Name there shouldn't be any problem. But for PhoneNumber we might want to display something nicer, like "Phone Number". For this kind of scenario we can use another data annotation: [Display(Name = "Phone Number")].

For validating the contents of the PhoneNumber field, we're using [Phone] data annotation, which confirms user-entered phone numbers conform loosely to E.164 formatting standards.

Loading Code Sample...
        
        
        AppointmentReminders.Web/Models/Appointment.cs

        The Appointment Model

        AppointmentReminders.Web/Models/Appointment.cs

        Our appointment model is now defined. It's time to take a look at the form that allows an administrator to create new appointments.

        Check out the new Appointment form

        New Appointment Form

        When we create a new appointment, we need a guest name, a phone number and a time. By using HTML Helper classes we can bind the form to the model object. Those helpers will generate the necessary HTML markup that will create a new appointment on submit.

        Loading Code Sample...
              
              
              AppointmentReminders.Web/Views/Appointments/_Form.cshtml

              New Appoinment Form

              AppointmentReminders.Web/Views/Appointments/_Form.cshtml

              Now that we have a model and an UI, we will see how we can interact with Appointments.

              See how to interact with Appointments

              Interacting with Appointments

              As a user, I want to view a list of all future appointments, and be able to delete those appointments.

              If you're an organization that handles a lot of appointments, you probably want to be able to view and manage them in a single interface. That's what we'll tackle in this user story. We'll create a UI to:

              • Show all appointments
              • Delete individual appoinments

              We know what interactions we want to implement, so let's look first at how to list all upcoming Appointments.

              Check out the controller to list Appointments

              Getting a List of Appointments

              At the controller level, we'll get a list of all the appointments in the database and render them with a view. We also add a prompt if there aren't any appointments, so the admin user can create one.

              Loading Code Sample...
                    
                    
                    AppointmentReminders.Web/Controllers/AppointmentsController.cs

                    List all Appointments

                    AppointmentReminders.Web/Controllers/AppointmentsController.cs

                    That's how we return the list of appointments, now we need to render them. Let's look at the Appointments template for that.

                    Visit the Appointments template to see how to render the list

                    Displaying All Appointments

                    The index view lists all appointments which are sorted by Id. The only thing we need to add to fulfil our user story is a delete button. We'll add the edit button just for kicks.

                    HTML Helpers

                    You may notice that instead of hard-coding the urls for Edit and Delete we are using an ASP.NET MVC HTML Helpers. If you view the rendered markup you will see these paths.

                    • /Appointments/Edit/id for edit
                    • /Appointments/Delete/id for delete

                    AppointmentsController.cs contains methods which handle both the edit and delete operations.

                    Loading Code Sample...
                          
                          
                          AppointmentReminders.Web/Views/Appointments/Index.cshtml

                          Display all Appointments

                          AppointmentReminders.Web/Views/Appointments/Index.cshtml

                          Now that we have the ability to create, view, edit, and delete appointments, we can dig into the fun part: scheduling a recurring job that will send out reminders via SMS when an appointment is coming up!

                          What's needed to send SMS reminders?

                          Sending Reminders

                          As an appointment system, I want to notify a user via SMS an arbitrary interval before a future appointment.

                          There are a lot of ways to build this part of our application, but no matter how you implement it there should be two moving parts:

                          • A script that checks the database for any appointment that is upcoming, and then sends a SMS.
                          • A worker that runs that script continuously.

                          Let's take a look at how we decided to implement the latter with Hangfire.

                          Get acquainted with Hangfire

                          Working with Hangfire

                          If you've never used a job scheduler before, you may want to check out this post by Scott Hanselman that shows a few ways to run background tasks in ASP.NET MVC. We decided to use Hangfire because of its simplicity. If you have a better way to schedule jobs in ASP.NET MVC please let us know.

                          Hangfire needs a backend of some kind to queue the upcoming jobs. In this implementation, we're using SQL Server Database, but it's possible to use a different data store. You can check their documentation for further details.

                          Loading Code Sample...
                                
                                
                                AppointmentReminders.Web/packages.config

                                Hangfire Dependencies

                                AppointmentReminders.Web/packages.config

                                Now that we have included Hangfire dependencies into the project, let's take a look at how to configure it to use it in our appointment reminders application.

                                Visit Hangfire configuration

                                Hangfire Configuration Class

                                We created a class named Hangfire to configure our job scheduler. This class defines two static methods:

                                1. ConfigureHangfire to set initialization parameters for the job scheduler.
                                2. InitialzeJobs to specify which recurring jobs should be run, and how often they should run.
                                Loading Code Sample...
                                      
                                      
                                      AppointmentReminders.Web/App_Start/Hangfire.cs

                                      Hangfire Configuration

                                      AppointmentReminders.Web/App_Start/Hangfire.cs

                                      That's it for the configuration. Let's take a quick look next at how we start up the job scheduler.

                                      Starting the job scheduler

                                      Starting the Job Scheduler

                                      This ASP.NET MVC project is an OWIN-based application, which allows us to create a startup class to run any custom initialization logic required in our application. This is the preferred location to start Hangfire - check out their configuration docs for more information.

                                      Loading Code Sample...
                                            
                                            
                                            AppointmentReminders.Web/Startup.c

                                            Start Hangfire

                                            AppointmentReminders.Web/Startup.c

                                            Now that we've started the job scheduler, let's take a look at the logic that gets executed when our job runs.

                                            Check out the notification background job

                                            Notification Background Job

                                            In this class, we define a method called Execute which is called every minute by Hangfire. Every time the job runs, we need to:

                                            1. Get a list of upcoming appointments that require notifications to be sent out
                                            2. Use Twilio to send appointment reminders via SMS

                                            The AppointmentsFinder class queries our SQL Server database to find all the appointments whose date and time are coming up soon. For each of those appointments, we'll use the Twilio REST API to send out a formatted message.

                                            Loading Code Sample...
                                                  
                                                  
                                                  AppointmentReminders.Web/Workers/SendNotificationsJob.cs

                                                  Notifications Background Job

                                                  AppointmentReminders.Web/Workers/SendNotificationsJob.cs

                                                  Now that we are retrieving a list of upcoming Appointments, let's take a look next at how we use Twilio to send SMS notifications.

                                                  Let's use Twilio to send some notifications by SMS

                                                  Twilio REST API Request

                                                  This class is responsible for reading our Twilio account credentials from Web.config, and using the Twilio REST API to actually send out a notification to our users. We also need a Twilio number to use as the sender for the text message. Actually sending the message is a single line of code!

                                                  Loading Code Sample...
                                                        
                                                        
                                                        AppointmentReminders.Web/Domain/Twilio/RestClient.cs

                                                        Send SMS with Twilio

                                                        AppointmentReminders.Web/Domain/Twilio/RestClient.cs

                                                        Fun tutorial, right? Where can we take it from here?

                                                        Where to next?

                                                        Where to Next?

                                                        And with a little code and a dash of configuration, we're ready to get automated appointment reminders firing in our application. Good work!

                                                        If you are a C# developer working with Twilio, you might want to check out other tutorials:

                                                        Click to Call

                                                        Put a button on your web page that connects visitors to live support or sales people via telephone.

                                                        Two-Factor Authentication

                                                        Improve the security of your Flask app's login functionality by adding two-factor authentication via text message.

                                                        Did this help?

                                                        Thanks for checking out this tutorial! If you have any feedback to share with us, please reach out on Twitter... we'd love to hear your thoughts, and know what you're building!

                                                        Maylon Pedroso Hector Ortega David Prothero Kat King Andrew Baker Ricky Holtz Stephanie Marchante
                                                        Rate this page:

                                                        Need some help?

                                                        We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

                                                        Loading Code Sample...
                                                              
                                                              
                                                              

                                                              Thank you for your feedback!

                                                              Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                                                              Sending your feedback...
                                                              🎉 Thank you for your feedback!
                                                              Something went wrong. Please try again.

                                                              Thanks for your feedback!

                                                              thanks-feedback-gif