我正在嘗試創建自定義電子郵件標題以使用SendGrid api。如何創建自定義電子郵件標題
下面是我在做什麼 - 但它不工作:
class Mailman < ActionMailer::Base
default :from => "[email protected]"
def send_message(name, email, message)
@name = name
@email = email
@message = message
mail(:to => '[email protected]',
:from => email,
:subject => "Message from the site",
:headers['X-SMTPAPI'] => "category: Drip Email"
)
end
end
任何幫助表示讚賞。
感謝, 亞當
謝謝里卡多 - 答案在我面前。我曾試過這個,並得到它的工作。然後你發佈了確認我的解決方案。再次感謝。 – Northband
不錯!感謝您的反饋。 –
這不適合我。看到我的答案! –