sendgrid 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/sendgrid.rb +1 -0
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/sendgrid.rb
CHANGED
@@ -106,6 +106,7 @@ module SendGrid
|
|
106
106
|
|
107
107
|
# Sets the custom X-SMTPAPI header before sending the email
|
108
108
|
def perform_delivery_smtp(mail)
|
109
|
+
puts "SendGrid X-SMTPAPI: #{sendgrid_json_headers(mail)}" if SENDGRID_DEBUG_OUTPUT
|
109
110
|
headers['X-SMTPAPI'] = sendgrid_json_headers(mail)
|
110
111
|
super
|
111
112
|
end
|