Skip to content

Commit fdcca66

Browse files
authored
fix: Properly handle null header values (#91)
1 parent 08befa6 commit fdcca66

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
resend (0.16.0)
4+
resend (0.17.1)
55
httparty (>= 0.21.0)
66

77
GEM

lib/resend/mailer.rb

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ def headers_values(mail)
113113
unignored_headers(mail).each do |h|
114114
params[h.name.to_s] = h.unparsed_value
115115
end
116+
# remove nil header values
117+
params.delete_if { |_k, v| v.nil? }
116118
params
117119
end
118120

lib/resend/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Resend
4-
VERSION = "0.17.0"
4+
VERSION = "0.17.1"
55
end

spec/railtie/mailer_spec.rb

+15-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ def with_overwritten_headers(to, subject)
5252
end
5353
end
5454

55+
def with_nil_header_values(to, subject)
56+
headers["X-Entity-Ref-ID"] = nil
57+
mail(to: to, subject: subject) do |format|
58+
format.text { render plain: "txt" }
59+
format.html { render html: "<p>html</p>".html_safe }
60+
end
61+
end
62+
5563
def with_attachment(to, subject)
5664
attachments['invoice.pdf'] = {
5765
:content => File.read('resources/invoice.pdf'),
@@ -135,7 +143,7 @@ class TestMailerWithDisplayName < TestMailer
135143
expect(body[:headers]["X-Entity-Ref-ID"]).to eql("123")
136144
end
137145

138-
it "#mail properly overwrites #headers" do
146+
it "#build_resend_params properly overwrites #headers" do
139147
message = TestMailer.with_overwritten_headers("[email protected]", "Test!")
140148
body = @mailer.build_resend_params(message)
141149
expect(body[:from]).to eql("[email protected]")
@@ -145,4 +153,10 @@ class TestMailerWithDisplayName < TestMailer
145153
expect(body[:text]).to eql("txt")
146154
expect(body[:headers]["X-Entity-Ref-ID"]).to eql("overwritten")
147155
end
156+
157+
it "#build_resend_params handles nil values" do
158+
message = TestMailer.with_nil_header_values("[email protected]", "Test!")
159+
body = @mailer.build_resend_params(message)
160+
expect(body[:headers]).to be nil
161+
end
148162
end

0 commit comments

Comments
 (0)