Method: Mandrill::Rejects#delete
- Defined in:
- lib/mandrill/api.rb
#delete(email, subaccount = nil) ⇒ Hash
Deletes an email rejection. There is no limit to how many rejections you can remove from your blacklist, but keep in mind that each deletion has an affect on your reputation.
482 483 484 485 |
# File 'lib/mandrill/api.rb', line 482 def delete(email, subaccount=nil) _params = {:email => email, :subaccount => subaccount} return @master.call 'rejects/delete', _params end |