-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
placetel | ||
# placetel | ||
|
||
With this small library you should be able to address some nodes of the Placetel API. Please note that we have only implemented a tiny part of it and will continue to develop it as needed. | ||
|
||
Feel free to help us with the development! | ||
|
||
## Install | ||
|
||
```console | ||
go get github.com/jjideenschmiede/placetel | ||
``` | ||
|
||
## How to use it? | ||
|
||
### SMS | ||
|
||
With the SMS sent you are able to send sms through your Placetel account. The whole thing works as follows: | ||
|
||
```go | ||
err := placetel.SendSMS("Phone number", "Message", "Token") | ||
if err != nil { | ||
fmt.Println(err) | ||
} | ||
``` |