# File lib/aws/simple_email_service.rb, line 283 def send_raw_email raw_message, options = {} send_opts = {} send_opts[:raw_message] = {} send_opts[:raw_message][:data] = raw_message.to_s send_opts[:source] = options[:from] if options[:from] send_opts[:destinations] = [options[:to]].flatten if options[:to] client.send_raw_email(send_opts) nil end