https://github.com/bonnie/twilio-daily-reminder
Repo for twilio scheduling blog post
https://github.com/bonnie/twilio-daily-reminder
Last synced: 5 months ago
JSON representation
Repo for twilio scheduling blog post
- Host: GitHub
- URL: https://github.com/bonnie/twilio-daily-reminder
- Owner: bonnie
- Created: 2020-10-23T17:28:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T18:54:58.000Z (almost 5 years ago)
- Last Synced: 2025-02-17T04:27:10.683Z (8 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Schedule a Daily SMS Reminder (Linux, MacOs or Windows)
### Code to accopmany the [Twilio Developer Voices blog post](https://www.twilio.com/blog/schedule-a-daily-sms-reminder-on-linux-macos-or-windows).## To install
1. [Fork](https://guides.github.com/activities/forking/) or [clone](https://github.com/git-guides/git-clone) this repository.
2. Run these commands in the top level directory of your forked or cloned project:
```
cp dotenv_template .env
npm install
```
3. Complete the statements in the _.env_ file with your information
a. [Sign up for Twilio credentials](https://www.twilio.com/try-twilio) if you don't have them, or find them in [your settings](https://www.twilio.com/console/project/settings) if you already have an account.
b. The `TO_NUMBER` and `FROM_NUMBER` are the phone numbers to send your SMS "to" and "from". You can configure these in [your account](https://www.twilio.com/console/sms/getting-started/build).
4. Follow the blog post above to see how to send the SMS daily!