MadeByHecho / twilixir

Simple adapter to interface with Twilio's SMS messaging

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Twilixir Build Status

Twilixir is an Elixir Client to send SMS/MMS using Twilio.

Install

  1. Add twilixir to your list of dependencies in mix.exs:
def deps do
  [{:twilixir, "~> 1.0.0"}]
end
  1. Ensure twilixir is started before your application:
def application do
  [applications: [:twilixir]]
end

Configure

Add the following to your config.exs file:

config :twilixir,
  sid: "YOUR_TWILIO_SID",
  token: "YOUR_TWILIO_AUTH_TOKEN"

Send Messages

Twilixir.Messenger.create("from_number", "to_number", "body_text", "optional_media_url")

# e.g. Twilixir.Messenger.create("15005550006", "15005550001", "test text")

About

Simple adapter to interface with Twilio's SMS messaging


Languages

Language:Elixir 100.0%