mailchannels-worker-rails 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/mailchannels_worker/version.rb +1 -1
- data/lib/mailchannels_worker.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: 86a3b201646380efa23c46145642fc6bb79217932b40d2fb33c0e7ea97518a62
|
4
|
+
data.tar.gz: f7fbcb4aa7f41e10ede3eafe864b71a52e80ae08ee2c5f6afb3c42440fbfaee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dbb550f212907f767f7734bf2abd2e945f1bf03bc89c43f66021361c379bd74bb5cf288d1b3b8238a414ee2c6f4e5eeeaa54386a582ae3acbbde2adc1645809
|
7
|
+
data.tar.gz: '085623eda59da39b499385e8efb33cd7db61764e193290bf693ec6d6690363e70a012693f6ea1201293376a228eb6687a7f52358b058077667d181859f368f9b'
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
16
16
|
|
17
17
|
1. Start by deploying the [Mailchannels Worker](https://github.com/ment-labs/mailchannels-worker) on [Cloudflare Workers](https://workers.cloudflare.com/). Detailed instructions for this setup can be found in the [repository](https://github.com/ment-labs/mailchannels-worker), which includes all the necessary configurations.
|
18
18
|
|
19
|
-
2. Then, add the following lines to the corresponding environment file, such as
|
19
|
+
2. Then, add the following lines to the corresponding environment file, such as `config/environments/production.rb`:
|
20
20
|
|
21
21
|
```ruby
|
22
22
|
config.action_mailer.delivery_method = :mailchannels_worker
|
@@ -26,7 +26,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
26
26
|
}
|
27
27
|
```
|
28
28
|
|
29
|
-
Ensure to replace
|
29
|
+
Ensure to replace `YOUR_WORKER_URL` with the actual path where the worker is deployed, and `YOUR_API_KEY` with the generated API Key stored in the worker environment variables.
|
30
30
|
|
31
31
|
Remember to store the API Key in a secure location, such as [Rails Credentials](https://guides.rubyonrails.org/security.html#custom-credentials) or secret environment variables.
|
32
32
|
|
data/lib/mailchannels_worker.rb
CHANGED
@@ -29,7 +29,7 @@ module MailchannelsWorker
|
|
29
29
|
to: mail.to_addresses.map { |address| { email: address.address, name: address.name }.compact },
|
30
30
|
cc: mail.cc_addresses.map { |address| { email: address.address, name: address.name }.compact }.presence,
|
31
31
|
bcc: mail.bcc_addresses.map { |address| { email: address.address, name: address.name }.compact }.presence,
|
32
|
-
reply_to: (mail.header["Reply-To"]&.element&.addresses || []).map { |address| { email: address.address, name: address.name }.compact }.
|
32
|
+
reply_to: (mail.header["Reply-To"]&.element&.addresses || []).map { |address| { email: address.address, name: address.name }.compact }.first
|
33
33
|
}.compact],
|
34
34
|
content: mail.parts.map { |part| { type: part.content_type, value: part.decoded } }
|
35
35
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailchannels-worker-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bruno Prieto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|