diff --git a/examples/mongo_twilio/app.js b/examples/mongo_twilio/app.js index 80ea534cf..530d7ade3 100644 --- a/examples/mongo_twilio/app.js +++ b/examples/mongo_twilio/app.js @@ -8,7 +8,7 @@ var twilio = require("mu-twilio"); var clients = mongo.connect("clients"); clients.forEach(client => twilio.sendSmsMessage({ - to: cust.phone, + to: client.phone, body: `Hi ${client.name}! Your account balance is USD${client.accountBalance}`, }); );