https://github.com/dolph/txt
Send text messages from a CLI
https://github.com/dolph/txt
Last synced: 9 months ago
JSON representation
Send text messages from a CLI
- Host: GitHub
- URL: https://github.com/dolph/txt
- Owner: dolph
- License: apache-2.0
- Created: 2022-01-30T15:40:28.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T16:50:37.000Z (over 3 years ago)
- Last Synced: 2025-04-04T15:52:52.230Z (about 1 year ago)
- Language: Go
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# txt
Send text messages from the command line.
## Usage
Configuration is provided by environment variables. All arguments are sent as a text message:
```bash
$ txt hello world
```
To specify the recipient, use `TXT_TO`:
```bash
$ TXT_TO=15555551234 txt hello world
```
### Configuration
Configure your Twilio account using environment variables supported by [twilio-go](https://github.com/twilio/twilio-go) (such as `TWILIO_ACCOUNT_SID` and `TWILIO_AUTH_TOKEN`, both of which are required).
`txt` directly consumes additional environment variables prefixed with `TXT_`:
* `TXT_FROM` (required): The Twilio phone number to use for sending.
* `TXT_TO` (required): The phone number to send a text message to.