Sha256: 598103cf765359a824f9cd1ff842bc914d55cd40c6e070184dc79991ec24e491

Contents?: true

Size: 1.44 KB

Versions: 158

Compression:

Stored size: 1.44 KB

Contents

module ActionMailer
  module MailHelper
    # Uses Text::Format to take the text and format it, indented two spaces for
    # each line, and wrapped at 72 columns.
    def block_format(text)
      formatted = text.split(/\n\r\n/).collect { |paragraph|
        format_paragraph(paragraph)
      }.join("\n")

      # Make list points stand on their own line
      formatted.gsub!(/[ ]*([*]+) ([^*]*)/) { |s| "  #{$1} #{$2.strip}\n" }
      formatted.gsub!(/[ ]*([#]+) ([^#]*)/) { |s| "  #{$1} #{$2.strip}\n" }

      formatted
    end

    # Access the mailer instance.
    def mailer
      @_controller
    end

    # Access the message instance.
    def message
      @_message
    end

    # Access the message attachments list.
    def attachments
      @_message.attachments
    end

    # Returns +text+ wrapped at +len+ columns and indented +indent+ spaces.
    #
    # === Examples
    #
    #   my_text = "Here is a sample text with more than 40 characters"
    #
    #   format_paragraph(my_text, 25, 4)
    #   # => "    Here is a sample text with\n    more than 40 characters"
    def format_paragraph(text, len = 72, indent = 2)
      sentences = [[]]

      text.split.each do |word|
        if (sentences.last + [word]).join(' ').length > len
          sentences << [word]
        else
          sentences.last << word
        end
      end

      sentences.map { |sentence|
        "#{" " * indent}#{sentence.join(' ')}"
      }.join "\n"
    end
  end
end

Version data entries

158 entries across 132 versions & 11 rubygems

Version Path
actionmailer-3.2.9 lib/action_mailer/mail_helper.rb
actionmailer-3.2.9.rc3 lib/action_mailer/mail_helper.rb
actionmailer-3.2.9.rc2 lib/action_mailer/mail_helper.rb
actionmailer-3.2.9.rc1 lib/action_mailer/mail_helper.rb
challah-0.8.1 vendor/bundle/gems/actionmailer-3.2.8/lib/action_mailer/mail_helper.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionmailer-3.2.8/lib/action_mailer/mail_helper.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
challah-0.8.0.pre vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
challah-0.7.1 vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
challah-0.7.0 vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
challah-0.7.0.pre2 vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
actionmailer-3.2.8 lib/action_mailer/mail_helper.rb
actionmailer-3.1.8 lib/action_mailer/mail_helper.rb
actionmailer-3.2.8.rc2 lib/action_mailer/mail_helper.rb
challah-0.7.0.pre vendor/bundle/gems/actionmailer-3.2.7/lib/action_mailer/mail_helper.rb
actionmailer-3.2.8.rc1 lib/action_mailer/mail_helper.rb
actionmailer-3.2.7 lib/action_mailer/mail_helper.rb
actionmailer-3.1.7 lib/action_mailer/mail_helper.rb
actionmailer-3.2.7.rc1 lib/action_mailer/mail_helper.rb