Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (11 sloc)
479 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Your Twilio account credentials | |
| exports.accountSid = 'ACXXX'; | |
| exports.authToken = 'XXX'; | |
| //A Twilio number you control | |
| exports.from = '+16515556677'; | |
| //The message prepended to the text message link | |
| exports.message = 'Download ReadGood now! Here\'s the link :) '; | |
| //Change this to be wherever you end up deploying your HTML files | |
| //You might also consider using a shortened link to save space in | |
| //your message. | |
| exports.downloadLink = 'http://mad.site44.com/download.html'; |