Packages

[Work in Progress] Nexmo REST API client for Elixir"

Current section

Files

Jump to
nexmo lib nexmo message.ex
Raw

lib/nexmo/message.ex

defmodule Nexmo.Message do
def send(from, to, text) do
params = [
from: from,
to: to,
text: text
]
Nexmo.request(:get, "sms/json", params)
end
end