Sha256: faed65cf1ef5d16de7edf8d27b662cc9b610589e67b0bec1f5b724df8c651eed

Contents?: true

Size: 1.32 KB

Versions: 6

Compression:

Stored size: 1.32 KB

Contents

# -*- coding: utf-8 -*-
require 'jpmobile/mail'
require 'jpmobile/lookup_context'

Jpmobile::Email.japanese_mail_address_regexp = Regexp.new(/\.jp[^a-zA-Z\.\-]/)

module Jpmobile
  module Mailer
    class Base < ActionMailer::Base
      self._view_paths = self._view_paths.dup
      self.view_paths.unshift(Jpmobile::Resolver.new(File.join(::Rails.root, "app/views")))

      def mail(headers={}, &block)
        tos = headers[:to] || self.default_params[:to]
        tos = tos.split(/,/)

        @mobile = if tos.size == 1
                    # for mobile
                    (Jpmobile::Email.detect(tos.first) || Jpmobile::Mobile::AbstractMobile).new(nil, nil)
                  else
                    # for multi to addresses
                    Jpmobile::Mobile::AbstractMobile.new(nil, nil)
                  end
        self.lookup_context.mobile = @mobile.mail_variants

        @mobile.decorated = headers.delete(:decorated)

        m = super(headers, &block)

        m.mobile  = @mobile

        # for decorated-mail manipulation
        m.rearrange! if @mobile.decorated?

        m
      end

      class << self
        protected
        def set_payload_for_mail(payload, mail) #:nodoc:
          super

          payload[:mail] = Jpmobile::Util.ascii_8bit(mail.encoded).gsub(/\r\n/, "\n")
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jpmobile-4.1.5 lib/jpmobile/mailer.rb
jpmobile-3.0.9 lib/jpmobile/mailer.rb
jpmobile-4.1.4 lib/jpmobile/mailer.rb
jpmobile-4.0.1 lib/jpmobile/mailer.rb
jpmobile-4.1.1 lib/jpmobile/mailer.rb
jpmobile-4.1.0 lib/jpmobile/mailer.rb