souls 1.7.32 → 1.7.33
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c07931ef30cc914dbc6e03e9b6eaf87411f927ff17917faf20c9d865308f808b
|
4
|
+
data.tar.gz: ae6d456bc5df67d66b23393e6dbfd13492220d09266581a459bc323845e50884
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c428b926587c8f911d055dfdc5d6a928fdcd3e9a3b1f007d9540198eb2ada384463e81d6fb4f550266bb91677c3606f00a81ea449f156e588fe3742888bc8552
|
7
|
+
data.tar.gz: 05c5652223e43977a053dee4edc9d0c5dc2bce8e209286ec171c6992d443018ac42b44d0ca2ccef3c54532015aef95f8d9f979208ad14a2c6320ae43ff75a6f3
|
@@ -77,7 +77,7 @@ module Souls
|
|
77
77
|
|
78
78
|
def resolve
|
79
79
|
# First, instantiate the Mailgun Client with your API key
|
80
|
-
mg_client = ::Mailgun::Client.new(
|
80
|
+
mg_client = ::Mailgun::Client.new(ENV['MAILGUN_KEY'])
|
81
81
|
|
82
82
|
# Define your message parameters
|
83
83
|
message_params = {
|
@@ -88,7 +88,7 @@ module Souls
|
|
88
88
|
}
|
89
89
|
|
90
90
|
# Send your message through the client
|
91
|
-
mg_client.send_message(
|
91
|
+
mg_client.send_message(ENV['MAILGUN_DOMAIN'], message_params)
|
92
92
|
{ response: "Job done!" }
|
93
93
|
rescue StandardError => e
|
94
94
|
GraphQL::ExecutionError.new(e.to_s)
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.7.
|
1
|
+
1.7.33
|
@@ -1 +1 @@
|
|
1
|
-
1.7.
|
1
|
+
1.7.33
|