class MnoEnterprise::MailAdapters::MandrillAdapter

Public Class Methods

client() click to toggle source

Return a mandrill client configured with the right API key

# File lib/mno_enterprise/mail_adapters/mandrill_adapter.rb, line 9
def client
  @client ||= Mandrill::API.new(ENV['MANDRILL_API_KEY'] || MnoEnterprise.mandrill_key)
end
deliver(template, from, to, vars={}, opts={}) click to toggle source

Send a template @see Adapter#deliver

# File lib/mno_enterprise/mail_adapters/mandrill_adapter.rb, line 15
def deliver(template, from, to, vars={}, opts={})
  # Prepare message from args
  message = { from_name: from[:name], from_email: from[:email]}
  message[:to] = [to].flatten.map { |t| {name: t[:name], email: t[:email], type: (t[:type] || :to) } }

  # Sanitize merge vars
  full_sanitizer = Rails::Html::FullSanitizer.new
  message[:global_merge_vars] = vars.map { |k,v| {name: k.to_s, content: full_sanitizer.sanitize(v)} }

  # Merge additional mandrill options
  message.merge!(opts)

  self.send_template(template,[],message)
end
send_template(*args) click to toggle source

Send the provided template with options MandrillClient.send_template(template_name(string), template_content(array), message(hash))

# File lib/mno_enterprise/mail_adapters/mandrill_adapter.rb, line 32
def send_template(*args)
  if self.test?
    self.base_deliveries.push(args)
  else
    self.client.messages.send_template(*args)
  end
end