Skip to content

Instantly share code, notes, and snippets.

@chiragtoor
Last active November 23, 2016 17:02
Show Gist options
  • Save chiragtoor/950da69d0c79faff79a3c88a05092e6a to your computer and use it in GitHub Desktop.
Save chiragtoor/950da69d0c79faff79a3c88a05092e6a to your computer and use it in GitHub Desktop.
defmodule Project.Twilio do
def send_text_message(phone_number, message) do
ExTwilio.Api.create(ExTwilio.Message,
[to: phone_number,
from: Application.get_env(:ex_twilio, :send_number),
body: message])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment