class WesenderSMS

Public Class Methods

new( api_key = nil ) click to toggle source
Calls superclass method
# File lib/wesender.rb, line 25
def initialize( api_key = nil )
  @api_key = api_key.nil? ? ENV["WESENDER_API_KEY"] : api_key
  super()
end