resend 0.14.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0e67dbad71b9cb9f973da1f6502eb56200d7f1b14c04d61e54a2667c9fa6256
4
- data.tar.gz: 7e451c94a32672e28c01ee30fcb21c1a03fdedc714b7ea89ef1e37af8bc8633c
3
+ metadata.gz: 5654ce4fd9c6c9a097803ad5a55c064d5d21bb2c9fa3dddcbe7a334914fba8c3
4
+ data.tar.gz: 729b8b8acf1a8dd6c016ce8cc5f509a39bfd8806cbfc11f044e0dd732a011088
5
5
  SHA512:
6
- metadata.gz: 9fdb85310827bfde2e36ac65c5715ec45e503d151ec49ea56f6395fbccf1b967916b59039e9bd80566b8ec1babe706e7737130ef68f976b31693049b708ab0c6
7
- data.tar.gz: f5cab30d484e6dd386da48f16b7ac03c207c8a975a3d7550e84642e0872222c5510d399f38b44746546b04d1a78ee8da07bed6af5347bf2566f05599c94acbc8
6
+ metadata.gz: 36611a0d85ebc0938e0edb0df7e3bd9c9e69fb9ed87e1c0d3f19a4512f6305447b7169ac61ad7ce30cd710003d28c0a099bd7901b892f2cb1446f8a7910c4ed4
7
+ data.tar.gz: 3ec1ae9d87ae9250a8e2eb0463878fca57013d1857ee8aee4fcab208fc7fa2e84c24cb02cc82bd5585b419c3174a24493af20dac27ceef99c7f3229545377dcd
data/lib/resend/mailer.rb CHANGED
@@ -44,6 +44,7 @@ module Resend
44
44
  }
45
45
  params.merge!(get_addons(mail))
46
46
  params.merge!(get_headers(mail))
47
+ params.merge!(get_tags(mail))
47
48
  params[:attachments] = get_attachments(mail) if mail.attachments.present?
48
49
  params.merge!(get_contents(mail))
49
50
  params
@@ -62,6 +63,19 @@ module Resend
62
63
  params
63
64
  end
64
65
 
66
+ #
67
+ # Add tags fields
68
+ #
69
+ # @param Mail mail Rails Mail object
70
+ #
71
+ # @return Hash hash with tags param
72
+ #
73
+ def get_tags(mail)
74
+ params = {}
75
+ params[:tags] = mail[:tags].unparsed_value if mail[:tags].present?
76
+ params
77
+ end
78
+
65
79
  #
66
80
  # Add cc, bcc, reply_to fields
67
81
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Resend
4
- VERSION = "0.14.0"
4
+ VERSION = "0.15.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resend
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derich Pacheco
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-08 00:00:00.000000000 Z
11
+ date: 2024-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty