我在sendgrid中创建了模板,如何在发送电子邮件时选择我的rails应用程序
class Notifier < ActionMailer::Base
include SendGrid
...
def welcome_user
mail(:to => 'xxx@gmail.com' , :subject => "Welcome to our website.")
end
end
答案 0 :(得分:0)
Legacy Email Templates没有多个模板可供选择。如果您创建了多个模板,则需要使用Template Engine。
对于任一实现,您都希望使用SMTPAPI Gem来构建相应的SMTPAPI标头。您可以定义Template Engine template to use in SMTPAPI以及activate the Legacy Template app。