X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c0082c57cb7c5e67115e7b03c8c85f74b5b29d0d..2944dd6d514383df2c7c8064a37e14a57c69845f:/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 7c96d718cc..5fb7036bf2 100644 --- a/services/api/app/mailers/user_notifier.rb +++ b/services/api/app/mailers/user_notifier.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class UserNotifier < ActionMailer::Base include AbstractController::Callbacks @@ -5,7 +9,7 @@ class UserNotifier < ActionMailer::Base def account_is_setup(user) @user = user - mail(to: user.email, subject: 'Welcome to Curoverse - shell account enabled') + mail(to: user.email, subject: 'Welcome to Arvados - shell account enabled') end end