X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c2c38069d28fc68dea6e1b2cb0d5f4f36e1ef03f..591fd5d18644037426b58abc0d21bb2ccbcae888:/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..35a19b136c 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') + mail(to: user.email, subject: 'Welcome to Curoverse - shell account enabled') end end