Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamd3vil/sms_man
An Elixir Library for sending SMS through different providers
https://github.com/iamd3vil/sms_man
Last synced: 9 days 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-27T19:19:56.000Z (over 8 years ago)
- Last Synced: 2024-04-19T20:58:32.924Z (7 months ago)
- Language: Elixir
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- 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
```