Method: Mandrill::Messages#reschedule

Defined in:
lib/mandrill/api.rb

#reschedule(id, send_at) ⇒ Hash

Reschedules a scheduled email.



1146
1147
1148
1149
# File 'lib/mandrill/api.rb', line 1146

def reschedule(id, send_at)
    _params = {:id => id, :send_at => send_at}
    return @master.call 'messages/reschedule', _params
end