activate emails
This commit is contained in:
@ -1,6 +1,23 @@
|
||||
class AccountMailer < ApplicationMailer
|
||||
def activation_needed
|
||||
@blarg = "This was blarg"
|
||||
mail(to: 'markamoser+test@gmail.com', subject: 'Activate me please!')
|
||||
# Subject can be set in your I18n file at config/locales/en.yml
|
||||
# with the following lookup:
|
||||
#
|
||||
# en.account_mailer.activation_needed_email.subject
|
||||
#
|
||||
def activation_needed_email(user)
|
||||
@greeting = "Hi"
|
||||
@user = user
|
||||
mail to: Person.admins.map(&:email).join(', ')
|
||||
end
|
||||
|
||||
# Subject can be set in your I18n file at config/locales/en.yml
|
||||
# with the following lookup:
|
||||
#
|
||||
# en.account_mailer.activation_success_email.subject
|
||||
#
|
||||
def activation_success_email(user)
|
||||
@greeting = "Hi"
|
||||
@user = user
|
||||
mail to: user.email
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user