Forked from dblock/action_mailer_with_text_part.rb
Last active
December 10, 2015 00:39
-
-
Save nateberkopec/4353214 to your computer and use it in GitHub Desktop.
Rails 4 edition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Insert an automatic text MIME part into HTML e-mail. | |
# (c) Daniel Doubrovkine, Art.sy 2012 | |
# MIT License | |
# | |
class ActionMailerWithTextPart < ActionMailer::Base | |
def collect_responses(headers) | |
responses = super(headers) | |
html_part = responses.detect { |response| response[:content_type] == "text/html" } | |
text_part = responses.detect { |response| response[:content_type] == "text/plain" } | |
if html_part && ! text_part | |
body_parts = [] | |
Nokogiri::HTML(html_part[:body]).traverse do |node| | |
if node.text? and ! (content = node.content ? node.content.strip : nil).blank? | |
body_parts << content | |
elsif node.name == "a" && (href = node.attr("href")) && href.match(/^https?:/) | |
body_parts << href | |
end | |
end | |
responses.insert 0, { content_type: "text/plain", body: body_parts.uniq.join("\n") } | |
end | |
[responses] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I ran this, I got:
ArgumentError: Header names may not contain a colon
. Changing line 23 to justresponses
did the trick (from @dblock).