Skip to content

Commit dfdf954

Browse files
author
Craig Dennis
committed
Adds warnings and promo code text
1 parent c341b01 commit dfdf954

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

notes.md

+23
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,26 @@ exports.handler = function (context, event, callback) {
152152
};
153153
```
154154

155+
#### TwiML Bin: Get the next caller in the queue
156+
157+
If you had a phone number you could set a dial in number to use the following TwiML Bin on incoming calls. You'd then just have the manager call this number and they'd get the next caller in the queue!
158+
159+
```xml
160+
<Response>
161+
<Dial>
162+
<Queue>managers</Queue>
163+
</Dial>
164+
</Response>
165+
```
166+
155167
### Video 4 - Create an Outbound Call
156168

157169
- 📚 [Twilio CLI](https://twil.io/cli)
158170
- 👩‍💻 [Twilio CLI Debugger Plugin](https://github.com/twilio/plugin-debugger)
159171
- 📚 [Call Resource Status Callback](https://www.twilio.com/docs/voice/api/call-resource#statuscallback)
160172
- 📚 [Messaging Status Callback pattern](https://www.twilio.com/docs/usage/webhooks/sms-webhooks#type-2-status-callbacks)
161173
- 📚 [Answering Machine Detection](https://www.twilio.com/docs/voice/answering-machine-detection)
174+
- 👩‍💻 [Modify Calls in Progress - Tutorial](https://www.twilio.com/docs/voice/tutorials/how-to-modify-calls-in-progress)
162175

163176
#### Function: /status-displayer
164177

@@ -195,6 +208,7 @@ You can view [all the completed PhoneMO source code](./code/phonemo).
195208

196209
### Video 1 - Project Introduction
197210

211+
- 🎁 Looking for a promo code to upgrade your account out of trial mode? Send me a text message with the word `promo` in it.
198212
- 👀 [Most Popular Social Audio Apps in 2021](https://www.highfidelity.com/blog/most-popular-social-audio-apps)
199213

200214
### Video 2 - Use the Serverless Toolkit
@@ -208,11 +222,19 @@ You can view [all the completed PhoneMO source code](./code/phonemo).
208222

209223
### Video 4 - Use Private Data
210224

225+
⏰⏰⏰⏰⏰⏰
226+
227+
Whoops! I mistakenly put `muted: false` but I meant `muted: true`! We want callers that aren't the speakers to be silent. Sorry about that!
228+
229+
⏰⏰⏰⏰⏰⏰
230+
211231
- 📚 [Using Private Assets](https://www.twilio.com/docs/runtime/assets#using-private-assets)
212232
- 👀 [String.prototype.split - MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split)
213233

214234
### Video 5 - Allow for registration via SMS
215235

236+
- 👀 [switch statement - MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/switch)
237+
216238
#### Code for showing the schedule
217239

218240
```javascript
@@ -238,6 +260,7 @@ if (showHelp) {
238260
### Video 8 - Send a follow-up survey
239261

240262
- 👀 [SMS Guidelines](https://www.twilio.com/guidelines/sms)
263+
- 👀 [What is Net Promoter Score or NPS](https://www.netpromoter.com/know/)
241264

242265
### Video 9 - Wrap-up
243266

0 commit comments

Comments
 (0)