【问题标题】:Prevent ActionMailer to strip repeating spaces in plain message防止 ActionMailer 去除纯邮件中的重复空格
【发布时间】:2012-02-18 16:42:55
【问题描述】:

我想在文本邮件中有一个表格,所以我写了一些帮助:

module MailerHelper
  def field_width(text, width)
    ' ' * (width - text.length) + text
  end

  def cell(text, width)
    output = '| ' + field_width(text, width-2) + " |\n"
    output << '+-' + '-'*(width-2) + '-+'
  end
end

那么在视图中我是这样写的:

<%= cell 'Test', 10 %>

但我得到的(根据letter_opener)是:

| Test |
+----------+

如您所见,Test 之前重复的空格。我的问题是如何防止 ActionMailer(或其他任何破坏我漂亮的桌子的东西)这样做。

邮件代码:

  def remind(client, invoices)
    @client = client
    @company = @client.company
    @invoices  = invoices.to_a

    days_left = @invoices.first.pay_date - Date.today
    message = @client.group.messages.find_by_period days_left.to_i

    raise 'No messages for this invoices.' if message.nil?

    @template = message.template || if days_left < 0
      t 'message.before'
    elsif days_left > 0
      t 'message.after'
    else
      t 'message.today'
    end

    @text = liquid_parse @template
    @html = markdown_parse @text

    mail(:to => @client.email, :subject => t('message.title'))
  end

  private
    def markdown_parse(text)
      markdown = Redcarpet::Markdown.new Redcarpet::Render::HTML,
        :autolink => true, :space_after_headers => true
      markdown.render text
    end

    def liquid_parse(text)
      renderer = Liquid::Template.parse text
      renderer.render 'company' => @company, 'invoice' => @invoice, 'client' => @client
    end

【问题讨论】:

  • 是时候破解ActionMailer源码了……

标签: ruby-on-rails whitespace actionmailer ascii-art


【解决方案1】:

我发现了错误。这是由我用来在 HTML 部分内联 CSS 的 Premailer 引起的。

class InlineCSSInterceptor
  def self.delivering_email(message)
    #message.text_part.body = Premailer.new(message.text_part.body.to_s, with_html_string: true).to_plain_text # this is line causing the problem.
    message.html_part.body = Premailer.new(message.html_part.body.to_s, with_html_string: true).to_inline_css
  end
end

Mailer.register_interceptor InlineCSSInterceptor

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-12-16
    • 2012-05-18
    • 1970-01-01
    • 1970-01-01
    • 2014-03-27
    • 2018-10-25
    • 1970-01-01
    相关资源
    最近更新 更多