Fix sending Category to SendGrid (#20597)
* add in header for digest emails * add test * try different json encoding * Update app/mailers/digest_mailer.rb Co-authored-by: Mac Siri <mac@forem.com> --------- Co-authored-by: Mac Siri <mac@forem.com>
This commit is contained in:
parent
9ba5a5fab0
commit
0be9914aa0
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ class DigestMailer < ApplicationMailer
|
|||
# set sendgrid category in the header using smtp api
|
||||
# https://docs.sendgrid.com/for-developers/sending-email/building-an-x-smtpapi-header
|
||||
if ForemInstance.sendgrid_enabled?
|
||||
smtpapi_header = { category: ["Digest Email"] }.to_json
|
||||
smtpapi_header = { category: "Digest Email" }.to_json
|
||||
headers["X-SMTPAPI"] = smtpapi_header
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue