This guide shows how to write an autoresponder for MMS text messages. Autoresponders can streamline marketing campaigns and subscription signups and reduce the amount of work humans have to do.
You can create an autoresponder either by using our PHLO visual workflow builder or our APIs. Follow the instructions in one of the tabs below.
You can create and deploy a PHLO to implement an SMS autoresponder with a few clicks on the PHLO canvas.
To get started, you need a Plivo account — sign up with your work email address if you don’t have one already.
To create a PHLO, visit the PHLO page of the Plivo console. If this is your first PHLO, the PHLO page will be empty.
Click Create New PHLO.
In the Choose your use case pop-up, click Build my own. The PHLO canvas will appear with the Start node.
If you plan to use a dynamic payload — passing values through parameters when you trigger the PHLO from your application — click on the Start node to open the Configuration pane. Under API Request, enter key names for the variables you want to use in your payload — for example, a list of numbers to send an SMS message to.
Once you’ve configured the node, click Validate to save the configuration.
From the list of components on the left-hand side, drag and drop the Send Message component onto the canvas. When a component is placed on the canvas it becomes a node.
Draw a line to connect the Start node’s Incoming Message trigger state to the Send Message node.
In the Configuration pane at the right of the canvas, configure the Send Message node with a sender ID in the From field. Enter the destination number you wish to send a message to in the To field. Put your message in the Text field.
Once you’ve configured the node, click Validate to save the configuration.
After you complete the configuration, give the PHLO a name by clicking in the upper left, then click Save.
Once you’ve created and configured your PHLO, assign it to a Plivo number.
You can now send a message to your Plivo phone number and see how the autoresponder works.
For more information about creating a PHLO application, see the PHLO Getting Started guide. For information on components and their variables, see the PHLO Components Library.
Here’s how to use Plivo APIs to set up an MMS autoresponder.
To get started, you need a Plivo account — sign up with your work email address if you don’t have one already. To receive incoming messages, you must have a Plivo phone number that supports SMS; you can rent numbers from the Numbers page of the Plivo console or by using the Numbers API. If this is your first time using Plivo APIs, follow our instructions to set up a Ruby development environment.
Change to the project directory and run this command to create a Rails controller for inbound messages.
$ rails generate controller Plivo sms
This command generates a controller named plivo_controller in the app/controllers/ directory and a respective view in the app/views/plivo directory. We can delete the view as we don’t need it.
$ rm app/views/plivo/sms.html.erb
Edit app/controllers/plivo_controller.rb and paste into it this code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
include Plivo
include Plivo::Exceptions
include Plivo::XML
class PlivoController < ApplicationController
skip_before_action :verify_authenticity_token
def autoresponder
from_number = params[:From]
to_number = params[:To]
text = params[:Text]
media_url = params[:Media0]
puts "Message received - From: #{from_number}, To: #{to_number}, Text: #{text}, Media: #{media_url}"
if text.downcase == "hi"
text = "Hello!"
media = ["https://media.giphy.com/media/888R35MJTmDxQfRzfS/giphy.gif"]
elsif text.downcase == "bye"
text = "Bye and have a nice day!"
media = ["https://media.giphy.com/media/QM5lHSyFjz1XW/giphy.gif"]
else
text = "I'm glad that we connected"
media = ["https://media.giphy.com/media/888R35MJTmDxQfRzfS/giphy.gif"]
end
api = RestClient.new("<auth_id>","<auth_token>")
response = api.messages.create(
src:to_number,
dst:from_number,
text:body,
media_urls: media,
type: "mms"
)
render json: response.to_s
end
end
Edit config/routes.rb and change the line
Rails.application.routes.draw do
get 'plivo/sms'
end
to
Rails.application.routes.draw do
post 'plivo/autoresponder/' => 'plivo#autoresponder'
end
Start the Rails server
$ rails server
You should see your basic server application in action at http://localhost:3000/plivo/autoresponder/.
Set up ngrok to expose your local server to the internet.
config.hosts << /[a-z0-9-]+\.ngrok\.io/
Associate the Rails controller you created with Plivo by creating a Plivo application. Visit SMS > Applications in the Plivo console and click on Add New Application, or use Plivo’s Application API.
Give your application a name — we called ours Autoresponder
. Enter the server URL you want to use (for example https://<yourdomain>.com/plivo/autoresponder/
) in the Message URL
field and set the method to POST
. Click Create Application to save your application.
From the Application Type drop-down, select XML Application
.
From the Plivo Application drop-down, select Autoresponder
(the name we gave the application).
Click Update Number to save.
Send a text message to the Plivo number you specified using any phone.