textbelt
Go client for the textbelt.com txt messaging API
About textbelt
textbelt.com API for GO
This library sends text messages to mobile phones using http://textbelt.com
Installing
go get
$ go get gopkg.in/dietsche/textbelt.v1
Example Code
package main
import (
"gopkg.in/dietsche/textbelt.v1"
)
func main() {
texter := textbelt.New()
phoneToText := "123-456-7890"
if err := texter.Text(phoneToText, "txt msg from go!"); err != nil {
panic(err)
}
}
Frequently Asked Questions
What is textbelt?
textbelt is a Third-party APIs library for the Go programming language. Go client for the textbelt.com txt messaging API
How do I install textbelt?
Install textbelt with the Go module system using `go get dietsche/textbelt`. Check the repository for the current installation instructions.
What category does textbelt belong to?
textbelt is listed under Third-party APIs, specifically Third-party APIs.
