Class: Mandrill::Rejects

Inherits:
Object
  • Object
show all
Defined in:
lib/mandrill/api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(master) ⇒ Rejects



406
407
408
# File 'lib/mandrill/api.rb', line 406

def initialize(master)
    @master = master
end

Instance Attribute Details

#masterObject

Returns the value of attribute master.



404
405
406
# File 'lib/mandrill/api.rb', line 404

def master
  @master
end

Instance Method Details

#add(email) ⇒ Hash

Adds an email to your email rejection blacklist. Addresses that you add manually will never expire and there is no reputation penalty for removing them from your blacklist. Attempting to blacklist an address that has been whitelisted will have no effect.



415
416
417
418
# File 'lib/mandrill/api.rb', line 415

def add(email)
    _params = {:email => email}
    return @master.call 'rejects/add', _params
end

#delete(email) ⇒ 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.



453
454
455
456
# File 'lib/mandrill/api.rb', line 453

def delete(email)
    _params = {:email => email}
    return @master.call 'rejects/delete', _params
end

#list(email = nil, include_expired = false) ⇒ Array

Retrieves your email rejection blacklist. You can provide an email address to limit the results. Returns up to 1000 results. By default, entries that have expired are excluded from the results; set include_expired to true to include them.



443
444
445
446
# File 'lib/mandrill/api.rb', line 443

def list(email=nil, include_expired=false)
    _params = {:email => email, :include_expired => include_expired}
    return @master.call 'rejects/list', _params
end