1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/ses/send_raw_email.rb
Postmodern c0bc273d44 Convert the raw_message for send_raw_email, just in case.
* This allows others to directly send Mail::Message objects via
  send_raw_email.
2013-07-03 20:00:48 -07:00

41 lines
1.3 KiB
Ruby

module Fog
module AWS
class SES
class Real
require 'fog/aws/parsers/ses/send_raw_email'
# Send a raw email
#
# ==== Parameters
# * RawMessage <~String> - The message to be sent.
# * Options <~Hash>
# * Source <~String> - The sender's email address. Takes precenence over Return-Path if specified in RawMessage
# * Destinations <~Array> - All destinations for this email.
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'MessageId'<~String> - Id of message
# * 'ResponseMetadata'<~Hash>:
# * 'RequestId'<~String> - Id of request
def send_raw_email(raw_message, options = {})
params = {}
if options.has_key?('Destinations')
params.merge!(Fog::AWS.indexed_param('Destinations.member', [*options['Destinations']]))
end
if options.has_key?('Source')
params['Source'] = options['Source']
end
request({
'Action' => 'SendRawEmail',
'RawMessage.Data' => Base64.encode64(raw_message.to_s).chomp!,
:parser => Fog::Parsers::AWS::SES::SendRawEmail.new
}.merge(params))
end
end
end
end
end