rails_mail 0.10.6 → 0.11.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d490206541f350f1c96e83e22233dc0829d3ef4e1102c7d9ef0aba2c2af6fc6
4
- data.tar.gz: 84510c52a082d8d8abdec666c0634c55c092c4b10e7d9c25319aa9b8e2a26c00
3
+ metadata.gz: cf24f9aa73272f4f8802f025175fc29d4c4848606ec57dc4d9a9b3377021f704
4
+ data.tar.gz: 3eaf0c640bb05c9cfdeccdd3a2d0e5308b999cf0943e83fec8f182dd56e0d46c
5
5
  SHA512:
6
- metadata.gz: 7c2fa09fbe238b7fa0c52e997dd7055922b8a8738e7e52270a1882e844ed877f4be6e6b0fc799e45c6ee525c3f5d3091aefa30df91edad2378a2af4fc08a5e15
7
- data.tar.gz: 8f989621de7be287c283899ae8f73a4dfa1e088e57de32c1012c2173f812b15b585a8a8ecca8523d24650fcdc822ea8e64bc7f6b2f3096df18be8b09eda821b0
6
+ metadata.gz: 900f477af928db55a2636da015430ebad5afd824d2229696eaf4fafcd8424251c1293f906c160d7a1bbf9ceb625801b08f284f242fa938c0a1408cfa2414d4eb
7
+ data.tar.gz: 8420bc98e1c55e5b8fb0a9b929a148078b73e48e4925409b3df98bb85618f659a7354f57739ab2b27cd78b15a214cb5a742d2b6447d6ab9a591a91e6d3395ad8
data/README.md CHANGED
@@ -256,8 +256,6 @@ RailsMail uses Turbo, TurboStreams, and ActionCable to provide real-time updates
256
256
  - Implement introspection of application notifiers and allow manual delivery/inspection of emails
257
257
  - Need to introspect the arguments of the notifier and see if the arguments can be paired with active record models or to allow a mapping of argument type to sample data / fixtures.
258
258
  - Implement read/unread functionality
259
- - Implement individual email delete
260
- - Implement multi-part (text/html) email support
261
259
  - Allow clients to add additional acceptable HTML tags to render
262
260
 
263
261
  ## Contributing
@@ -8,7 +8,7 @@ module RailsMail
8
8
  a.set_attribute("data-turbo", "false")
9
9
  end
10
10
  sanitize(doc.to_html,
11
- tags: ActionView::Base.sanitized_allowed_tags + [ "table", "tbody", "tr", "td" ],
11
+ tags: ActionView::Base.sanitized_allowed_tags + [ "table", "tbody", "tr", "td", "th", "thead", "tfoot" ],
12
12
  attributes: ActionView::Base.sanitized_allowed_attributes + [ "style", "target", "data-turbo" ])
13
13
  end
14
14
  end
@@ -16,7 +16,7 @@
16
16
  <div class="min-w-0">
17
17
  <div class="text-sm font-medium text-gray-900 truncate"><%= email.subject %></div>
18
18
  <div class="text-xs text-gray-500">
19
- <span class="truncate"><%= email.to.join(', ') %></span>
19
+ <span class="truncate"><%= email.from %></span>
20
20
  <time
21
21
  data-controller="timeago"
22
22
  data-timeago-datetime-value="<%= email.created_at.iso8601 %>"
@@ -1,3 +1,3 @@
1
1
  module RailsMail
2
- VERSION = "0.10.6"
2
+ VERSION = "0.11.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_mail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.6
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Philips
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-25 00:00:00.000000000 Z
11
+ date: 2025-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails