Automatically insert a text/plain part into your HTML multipart e-mails.
gem 'actionmailer-text'
class WelcomeMailer < ActionMailer::Base
include ActionMailer::Text
default from: 'welcome@example.org'
def welcome(user)
@user = user
mail(to: @user.email, subject: 'Welcome!') do |format|
format.html { render 'welcome' }
end
end
end
The MIME standard allows systems to send e-mail with multiple parts: plain/text for business-efficient devices such as the Blackberry, and text/html for web-based e-mail readers, such as GMail. Furthermore, ActionMailer supports multiple template formats: create an .html.haml template along with a .txt.haml template to generate both. We also know that text/plain email helps deliverability, but we believe a disproportionately small amount of text e-mails are actually read - the vast majority of devices are capable of parsing some HTML. This gem lets you get the text/plain part for free.
See this blog post for details.
See CONTRIBUTING.
Copyright (c) 2015, Daniel Doubrovkine, Artsy and Contributors.
This project is licensed under the MIT License.