Class: Imessage::Sender

Inherits:
Object
  • Object
show all
Defined in:
lib/imessage/sender.rb

Instance Method Summary collapse

Instance Method Details

#deliver(options = {text:nil, attachment:nil, contacts: []}) ⇒ Object



3
4
5
6
7
# File 'lib/imessage/sender.rb', line 3

def deliver(options = {text:nil, attachment:nil, contacts: []})
  options[:contacts].each do |contact|
    _deliver(options[:text], options[:attachment], contact)
  end
end