Some emails we're sending are getting clipped by gmail, so I'm trying to make them smaller. The biggest effect is when I run the email through a minifier like: http://www.willpeavy.com/minifier/
Now I'm trying to figure out how to minify the the emails I send with ActionMailer, that I send like:
NewsletterMailer.newsletter_email(@newsletter).deliver_later
I realize there are compression gems, but I'm not sure how to utilize those when ActionMailer is doing the rendering.
Any ideas?