X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e9622f371ad4d75f0a0b5ee9480fae779dd63156..369f45fefd2b494f0a889ff7cb317c7b78e0220a:/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 055fe3ad04..ad887d035a 100644 --- a/services/api/app/mailers/user_notifier.rb +++ b/services/api/app/mailers/user_notifier.rb @@ -1,11 +1,15 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class UserNotifier < ActionMailer::Base include AbstractController::Callbacks - default from: Rails.configuration.user_notifier_email_from + default from: Rails.configuration.Users.UserNotifierEmailFrom def account_is_setup(user) @user = user - mail(to: user.email, subject: 'Welcome to Curoverse') + mail(to: user.email, subject: 'Welcome to Arvados - account enabled') end end