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
challah-0.6.2 vendor/bundle/gems/actionmailer-3.2.5/lib/action_mailer/mail_helper.rb
challah-0.6.2 vendor/bundle/gems/actionmailer-3.2.6/lib/action_mailer/mail_helper.rb
challah-0.6.2 vendor/bundle/gems/actionmailer-3.2.2/lib/action_mailer/mail_helper.rb
challah-0.6.2 vendor/bundle/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
initforthe-cookies-0.0.1 vendor/bundle/gems/actionmailer-3.2.6/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.6/lib/action_mailer/mail_helper.rb
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb
actionmailer-3.2.6 lib/action_mailer/mail_helper.rb
actionmailer-3.1.6 lib/action_mailer/mail_helper.rb
challah-0.6.1 vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/mail_helper.rb
challah-0.6.1 vendor/bundle/gems/actionmailer-3.2.2/lib/action_mailer/mail_helper.rb
challah-0.6.1 vendor/bundle/gems/actionmailer-3.2.3/lib/action_mailer/mail_helper.rb