Browse Source

add roadie-rails gem for e-mail inline styles (#8335, #20641)

Contributed by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@14540 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.2.0
Toshi MARUYAMA 8 years ago
parent
commit
0dc3c2fe1c
2 changed files with 4 additions and 0 deletions
  1. 1
    0
      Gemfile
  2. 3
    0
      app/models/mailer.rb

+ 1
- 0
Gemfile View File

@@ -14,6 +14,7 @@ gem "protected_attributes"
gem "actionpack-action_caching"
gem "actionpack-xml_parser"
gem "loofah", "~> 2.0"
gem "roadie-rails"

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]

+ 3
- 0
app/models/mailer.rb View File

@@ -15,6 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

require 'roadie'

class Mailer < ActionMailer::Base
layout 'mailer'
helper :application
@@ -22,6 +24,7 @@ class Mailer < ActionMailer::Base
helper :custom_fields

include Redmine::I18n
include Roadie::Rails::Automatic

def self.default_url_options
options = {:protocol => Setting.protocol}

Loading…
Cancel
Save