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 +4 -4
- data/README.md +0 -2
- data/app/helpers/rails_mail/emails_helper.rb +1 -1
- data/app/views/rails_mail/shared/_email.html.erb +1 -1
- data/lib/rails_mail/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf24f9aa73272f4f8802f025175fc29d4c4848606ec57dc4d9a9b3377021f704
|
4
|
+
data.tar.gz: 3eaf0c640bb05c9cfdeccdd3a2d0e5308b999cf0943e83fec8f182dd56e0d46c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 %>"
|
data/lib/rails_mail/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2025-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|