Method: Mandrill::Messages#send_raw
- Defined in:
- lib/mandrill/api.rb
#send_raw(raw_message, from_email = nil, from_name = nil, to = nil, async = false, ip_pool = nil, send_at = nil, return_path_domain = nil) ⇒ Array
Take a raw MIME document for a message, and send it exactly as if it were sent through Mandrill’s SMTP servers
1102 1103 1104 1105 |
# File 'lib/mandrill/api.rb', line 1102 def send_raw(, from_email=nil, from_name=nil, to=nil, async=false, ip_pool=nil, send_at=nil, return_path_domain=nil) _params = {:raw_message => , :from_email => from_email, :from_name => from_name, :to => to, :async => async, :ip_pool => ip_pool, :send_at => send_at, :return_path_domain => return_path_domain} return @master.call 'messages/send-raw', _params end |