Class: Beepsend::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/beepsend/client.rb

Instance Method Summary collapse

Instance Method Details

#send_sms(to:, from: configuration.from, message:) ⇒ Object



3
4
5
6
# File 'lib/beepsend/client.rb', line 3

def send_sms(to:, from: configuration.from, message:)
  response = http.request request(to, from, message)
  handle_response response
end