Class: Mandrill::Whitelists

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(master) ⇒ Whitelists



1021
1022
1023
# File 'lib/mandrill/api.rb', line 1021

def initialize(master)
    @master = master
end

Instance Attribute Details

#masterObject

Returns the value of attribute master.



1019
1020
1021
# File 'lib/mandrill/api.rb', line 1019

def master
  @master
end

Instance Method Details

#add(email) ⇒ Hash

Adds an email to your email rejection whitelist. If the address is currently on your blacklist, that blacklist entry will be removed automatically.



1030
1031
1032
1033
# File 'lib/mandrill/api.rb', line 1030

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

#delete(email) ⇒ Hash

Removes an email address from the whitelist.



1052
1053
1054
1055
# File 'lib/mandrill/api.rb', line 1052

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

#list(email = nil) ⇒ Array

Retrieves your email rejection whitelist. You can provide an email address or search prefix to limit the results. Returns up to 1000 results.



1042
1043
1044
1045
# File 'lib/mandrill/api.rb', line 1042

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