https://github.com/iamd3vil/sms_man
An Elixir Library for sending SMS through different providers
https://github.com/iamd3vil/sms_man
Last synced: 3 months ago
JSON representation
An Elixir Library for sending SMS through different providers
- Host: GitHub
- URL: https://github.com/iamd3vil/sms_man
- Owner: iamd3vil
- Created: 2016-06-27T19:18:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-27T19:19:56.000Z (about 9 years ago)
- Last Synced: 2025-03-26T20:58:37.456Z (3 months ago)
- Language: Elixir
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SmsMan (Work in Progress)
An Elixir library for sending sms with different providers. It is adapter based and inspired from the awesome [Bamboo](https://hex.pm/packages/bamboo) library.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `sms_man` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:sms_man, "~> 0.1.0"}]
end
```2. Ensure `sms_man` is started before your application:
```elixir
def application do
[applications: [:sms_man]]
end
```