Twilixir is an Elixir Client to send SMS/MMS using Twilio.
- Add twilixir to your list of dependencies in
mix.exs
:
def deps do
[{:twilixir, "~> 1.0.0"}]
end
- Ensure twilixir is started before your application:
def application do
[applications: [:twilixir]]
end
Add the following to your config.exs
file:
config :twilixir,
sid: "YOUR_TWILIO_SID",
token: "YOUR_TWILIO_AUTH_TOKEN"
Twilixir.Messenger.create("from_number", "to_number", "body_text", "optional_media_url")
# e.g. Twilixir.Messenger.create("15005550006", "15005550001", "test text")