我正在使用Sendgrid在Rails 5上用我的后端发送电子邮件。我设法发送普通的html文件,但我无法发送html.erb文件。一般情况下它可以工作,但嵌入的红宝石不起作用。
html.erb文件:
<h1>Count <%= 2+2 %></h1>
实际输出
Count <%= 2+2 %>
期望输出
Count 4
电子邮件确实发送到我的收件箱。
我尝试过本教程https://sendgrid.com/docs/Integrate/Frameworks/rubyonrails.html,但根本不会发送电子邮件。通过API密钥https://github.com/sendgrid/sendgrid-ruby
使用gem的工作原理是什么