How to create custom email headers

左心房为你撑大大i 提交于 2019-12-02 20:29:14

You can use the #headers method of ActionMailer, I've edited your example to show how:

class Mailman < ActionMailer::Base
  default :from => "info@sample.com"

  def send_message(name, email, message)
    @name = name
    @email = email
    @message = message

    headers['X-SMTPAPI'] = '{"category": "Drip Email"}'

    mail(:to => 'info@sample.com',
     :from => email,
     :subject => "Message from the site"
    )
  end

end

Alternatively, you can pass a hash as an argument (to the method #headers) too:

headers {"SPECIFIC-HEADER-1" => "value", "ANOTHER-HEADER" => "and so..."}

I hope this can help you, and if not you always can check the rails guides: http://edgeguides.rubyonrails.org/action_mailer_basics.html.

I am using below code and works fine, just convert the hash to json with to_json

headers['X-SMTPAPI'] = { 
  category: "Weekly Newsletter",
  unique_args: { user_id: user.id } 
}.to_json

The headers method requires valid JSON. So Ricardo's solution requires this line instead:

headers['X-SMTPAPI'] = '{"category": "Drip Email"}'

calilonghorn

To use the unsubscribe groups in the suppression group functionality within sendgrid, I used the following syntax which worked.

headers['X-SMTPAPI'] = '{"asm_group_id": 1111}'
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!