将 ActionMailer RoR 模板与 Sendgrid API v3 一起使用

Using ActionMailer RoR templates with Sendgrid API v3

我已将 sendgrid-ruby gem 集成到我的 rails 应用程序中,并且正在尝试发送一封我以前通过 ActionMailer 发送的电子邮件。我使用了 sendgrid 中的示例:

from = Email.new(email: 'test@example.com', name: 'Test Sender')
to = Email.new(email: 'test@example.com')
subject = 'This is a sendgrid test email'
content = Content.new(type: 'text/plain', value: 'and easy to do anywhere, even with Ruby')
mail = Mail.new(from, subject, to, content)

sg = SendGrid::API.new(api_key: ENV['SENDGRID_API_KEY'])
response = sg.client.mail._('send').post(request_body: mail.to_json)

但是,我想用我在 Rails 中使用的旧 Mailer 模板替换内容。这可能吗?

您可以使用他们的 SMTP API,它允许您在 rails 应用程序中定义或使用您的电子邮件模板。

示例send guild ruby