我使用sendgrid发送邮件。大约有20个邮件模板。
我已在sendgrid app “订阅跟踪”的设置中设置了取消订阅模板。
我的要求是针对不同邮件模板的取消订阅链接的不同文本。
目前,sendgrid应用“订阅跟踪”中只设置了一个静态unsubscribe link
。
任何人都可以帮助我在user_mailer
课程中动态设置取消订阅链接。
我点了这个链接To give unsubscribe link in the mail using sendgrid XSMTPAPI header。但我不知道如何在ruby中实现它。
下面是我在user_mailer class
尝试过的代码。
def abuse_notification(post,current_user,eventid)
headers['X-SMTPAPI'] = '{"filters":{"subscriptiontrack":{"settings":{"enable":1,"text/html":"Unsubscribe <%Here%>","text/plain":"Unsubscribe Here: <% %>"}}}}'.to_json()
UserNotifier.smtp_settings.merge!({:user_name => "info@xxxx.example.com"})
@recipients = "test@xxx.example.com"
@from = "xxxx"
@subject = "Report Abuse Notification"
@sent_on = Time.now
@body[:user] = current_user
@body[:event] = post
end
答案 0 :(得分:6)
您在正确的轨道上,但要使用SendGrid SMTP API,您将为每封电子邮件添加标题,而不是添加到您的设置。在您的SMTP设置中,您将进一步存储(至少)user_name
,password
,address
,SendGrid Docs详细配置。使用ActionMailer
,您可以按如下方式对其进行配置:
ActionMailer::Base.smtp_settings = {
:user_name => 'sendgridusername',
:password => 'sendgridpassword',
:domain => 'yourdomain.com',
:address => 'smtp.sendgrid.net',
:port => 587,
:authentication => :plain,
:enable_starttls_auto => true
}
配置ActionMailer后,您需要设置UserNotifier
类,以查找类似于以下内容的内容。每个单独的方法都会设置X-SMTPAPI
标题:
class UserNotifier < ActionMailer::Base
default :from => "bob@example.com"
def send_message(name, email, message)
@name = name
@email = email
@message = message
headers['X-SMTPAPI'] = '{"filters":{"subscriptiontrack":{"settings":{"enable":1,"text/html":"Unsubscribe <%Here%>","text/plain":"Unsubscribe Here: <% %>"}}}}'
mail(
:to => 'george@example.com',
:from => email,
:subject => 'Example Message'
)
end
end
请注意,X-SMTPAPI
标头是JSON,如果您希望将Ruby对象转换为JSON,则需要使用JSON
gem。