send_grid_mailer 2.0.0 → 2.0.1
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/CHANGELOG.md +6 -0
- data/README.md +2 -0
- data/lib/send_grid_mailer/dev_deliverer.rb +2 -0
- data/lib/send_grid_mailer/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: b5a5a4b41e51e63f620ea04ce245bbf1bb8dbab53af796a367dc5b84ea832f40
|
|
4
|
+
data.tar.gz: 3f866a24d8bf9eb65f9c4c5c3e0a4ce8dfe0bef9f8b78b20b65ce4bc68e02ada
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b201f658155fc95834bd92fc923e163f6d0cac0681ebe94c324d9c76d588e9628fdb2e27bd730698aa0e6d83296cddc3fb653bec62e993b0fc3906883781084d
|
|
7
|
+
data.tar.gz: 71ce910d54de261e06ee7574aa94aba097cd5e19f776c8dd299a21c20fdd9b1167995eb8109b61fa848286276217bd7c299de45715332a817d90156ad3d8722f
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
+
### v2.0.1
|
|
6
|
+
|
|
7
|
+
##### Fixed
|
|
8
|
+
|
|
9
|
+
* :sendgrid_dev delivery method doesn't work with rails templates and missing api key.
|
|
10
|
+
|
|
5
11
|
### v2.0.0
|
|
6
12
|
|
|
7
13
|
##### Changed
|
data/README.md
CHANGED
|
@@ -144,6 +144,8 @@ end
|
|
|
144
144
|
|
|
145
145
|
#### Set SendGrid's Template
|
|
146
146
|
|
|
147
|
+
To use this functionality you need to add the SENDGRID_API_KEY and, in case you do not add the api key, the gem would not search in Sendgrid for the template.
|
|
148
|
+
|
|
147
149
|
```ruby
|
|
148
150
|
class TestMailer < ApplicationMailer
|
|
149
151
|
def my_email
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: send_grid_mailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Platanus
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-11-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: handlebars
|