johnhenry 1.0.7 → 1.0.8
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/app/mailers/john_henry_mailer.rb +14 -0
- data/app/mailers/user_mailer.rb +1 -1
- data/app/models/user.rb +1 -1
- data/lib/johnhenry/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ce2d8c76685686ef5b51ed0805b3bab68413851
|
4
|
+
data.tar.gz: 9f8d953e309bcc465b05a4ee59b9b3d33a7099dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d275809a4b8c08eb00d707c3f85e1c58fcdb274a9db0d967194aa00c5a8b8e4960912668e0e0006e8ce529445b4c91d9816285f6526c9e8e72e08e8bc04059e
|
7
|
+
data.tar.gz: c19d62ce51761137add8ef5d947a8ca1093d3f44511887d0386740c319db9b8507fd5f209d99c0ff65637aefac15d7a8a502771541745657118bf6514fde3832
|
@@ -0,0 +1,14 @@
|
|
1
|
+
class JohnHenryMailer < ActionMailer::Base
|
2
|
+
default from: 'No Reply <no-reply@example.com>'
|
3
|
+
default bcc: ENV['BCC_EMAILS'] if ENV['BCC_EMAILS'].present?
|
4
|
+
|
5
|
+
def signup(user)
|
6
|
+
@user = user
|
7
|
+
@name = @user.email.split('@').first.try(:titleize)
|
8
|
+
subject = "Thanks for trying the JohnHenry Rails toolkit"
|
9
|
+
subject += ", #{ @name }" unless @name.blank?
|
10
|
+
Rails.logger.info "Sending signup notification to #{ user.email }"
|
11
|
+
mail to: user.email,
|
12
|
+
subject: subject
|
13
|
+
end
|
14
|
+
end
|
data/app/mailers/user_mailer.rb
CHANGED
data/app/models/user.rb
CHANGED
data/lib/johnhenry/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: johnhenry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Derewecki
|
@@ -184,6 +184,7 @@ files:
|
|
184
184
|
- app/controllers/johnhenry/registrations_controller.rb
|
185
185
|
- app/controllers/johnhenry/sessions_controller.rb
|
186
186
|
- app/helpers/johnhenry/application_helper.rb
|
187
|
+
- app/mailers/john_henry_mailer.rb
|
187
188
|
- app/mailers/user_mailer.rb
|
188
189
|
- app/models/payment.rb
|
189
190
|
- app/models/user.rb
|