fx_awesome_mails 0.5.6 → 0.6.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/lib/fx_awesome_mails/version.rb +1 -1
- data/lib/fx_awesome_mails/view_helpers.rb +8 -7
- 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: 6c820ff443d34c89b3369e74c68c19ed8e732fc26b3633590651fd217329025f
|
|
4
|
+
data.tar.gz: 9f9cfe1e8252dea4bd388860f7abd47b745884d1c7c5e5d1b1eb1d973355542a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9975c437d63246b009b75b0289c0d353521d9220391682d8a61f0321a5b478eba990033edc110cb4c83fdad81ada53fc3b51da13b90f39507d22949775a88eef
|
|
7
|
+
data.tar.gz: 61438caf4d14de35905b21646672ac37caef2a1eec5643e1cb089f7bb7a99e261fd16327a5788ce48114f729958e0882b92e57b79e725ed77b507d1b4c118f0b
|
|
@@ -129,13 +129,13 @@ module FXAwesomeMails
|
|
|
129
129
|
delegate :capture, :content_tag, :link_to, :link_to_if, :link_to_if_true, :image_tag, :to => :parent
|
|
130
130
|
|
|
131
131
|
def horizontal(height = '20', **options)
|
|
132
|
-
options = {valign: 'top', class: '',style: ""}.merge_email_options(options)
|
|
133
|
-
content_tag('th', ' '.html_safe, height: height, valign: "#{options[:valign]}", style: "#{options[:style]}", class: "#{options[:class]} horizontal-gutter", bgcolor:
|
|
132
|
+
options = {valign: 'top', class: '',style: "text-align:left;font-size:1px;line-height:1px"}.merge_email_options(options)
|
|
133
|
+
content_tag('th', ' '.html_safe, height: height, valign: "#{options[:valign]}", style: "#{options[:style]}", class: "#{options[:class]} horizontal-gutter", bgcolor: options[:style].to_s.to_css_hash["background-color"].presence.to_s)
|
|
134
134
|
end
|
|
135
135
|
|
|
136
136
|
def vertical(width = '20', **options)
|
|
137
|
-
options = {valign: 'top', class: '',style: ""}.merge_email_options(options)
|
|
138
|
-
content_tag('th', ' '.html_safe, width: width, valign: "#{options[:valign]}", style: "#{options[:style]}", class: "#{options[:class]} vertical-gutter", bgcolor:
|
|
137
|
+
options = {valign: 'top', class: '',style: "text-align:left;font-size:1px;line-height:1px"}.merge_email_options(options)
|
|
138
|
+
content_tag('th', ' '.html_safe, width: width, valign: "#{options[:valign]}", style: "#{options[:style]}", class: "#{options[:class]} vertical-gutter", bgcolor: options[:style].to_s.to_css_hash["background-color"].presence.to_s )
|
|
139
139
|
end
|
|
140
140
|
end
|
|
141
141
|
|
|
@@ -147,7 +147,7 @@ module FXAwesomeMails
|
|
|
147
147
|
delegate :capture, :content_tag, :link_to, :link_to_if, :link_to_if_true, :image_tag, :to => :parent
|
|
148
148
|
|
|
149
149
|
def text(text = nil, **options, &block)
|
|
150
|
-
options = {style: "mso-line-height-rule:exactly;text-align:left;font-weight:400"}.merge_email_options(options)
|
|
150
|
+
options = {valign: "top", style: "mso-line-height-rule:exactly;text-align:left;font-weight:400"}.merge_email_options(options)
|
|
151
151
|
content_tag('th', valign: "#{options[:valign]}", style: options[:style], class: "#{options[:class]} text-container", bgcolor: "#{options[:style].to_s.to_css_hash["background-color"]}") do
|
|
152
152
|
"#{block_given? ? capture(&block) : text}".html_safe
|
|
153
153
|
end
|
|
@@ -163,7 +163,7 @@ module FXAwesomeMails
|
|
|
163
163
|
|
|
164
164
|
def email_image_tag(source: nil, **options, &block)
|
|
165
165
|
options = {alt: '', link_url: nil, width: 130, height: 50, valign: 'top', align: 'left', class: '', style: "background-color: #FFFFFF;outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; display: block; border: none" }.merge_email_options(options)
|
|
166
|
-
html = "<th valign='#{options[:
|
|
166
|
+
html = "<th valign='#{options[:valign]}' style='text-align:#{options[:align]}' class='#{options[:class]} image-container' bgcolor='#{options[:style].to_s.to_css_hash["background-color"]}' align='#{options[:align]}'>"
|
|
167
167
|
html << link_to_if_true(options[:link_url].present?, options[:link_url], target: '_blank') do
|
|
168
168
|
image_tag(source, style: options[:style], width: "#{options[:width]}", height: "#{options[:height]}", alt: "#{options[:alt]}")
|
|
169
169
|
end
|
|
@@ -228,7 +228,8 @@ module FXAwesomeMails
|
|
|
228
228
|
delegate :capture, :content_tag, :link_to, :link_to_if, :link_to_if_true, :image_tag, :to => :parent
|
|
229
229
|
|
|
230
230
|
def self.horizontal_grid(_capture_helper, **options, &block)
|
|
231
|
-
|
|
231
|
+
options = { valign: 'top', style: "text-align: left" }.merge_email_options(options)
|
|
232
|
+
"<th valign='#{options[:valign]}' style='#{options[:style]}' class='#{options[:class]} horizontal-grid'>
|
|
232
233
|
<table cellpadding='0' cellspacing='0' border='0' width='100%' style='min-width:100%' role='presentation'>
|
|
233
234
|
<tbody>
|
|
234
235
|
<tr>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fx_awesome_mails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Gebhard
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|