X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b91db14a4dced9d6ea124e86be3c796e6f2c8e8c..3f0ec839af28e56eb94bc9507ab59df1e670e59f:/services/api/app/mailers/user_notifier.rb diff --git a/services/api/app/mailers/user_notifier.rb b/services/api/app/mailers/user_notifier.rb index 759325a68b..7c96d718cc 100644 --- a/services/api/app/mailers/user_notifier.rb +++ b/services/api/app/mailers/user_notifier.rb @@ -1,8 +1,11 @@ class UserNotifier < ActionMailer::Base + include AbstractController::Callbacks + default from: Rails.configuration.user_notifier_email_from def account_is_setup(user) @user = user - mail(to: user.email, subject: 'Welcome to Curoverse') + mail(to: user.email, subject: 'Welcome to Curoverse - shell account enabled') end + end