projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
3720: Refactor manifest parsing from API server to Ruby SDK.
[arvados.git]
/
services
/
api
/
app
/
mailers
/
user_notifier.rb
1
class UserNotifier < ActionMailer::Base
2
default from: Rails.configuration.user_notifier_email_from
3
4
def account_is_setup(user)
5
@user = user
6
mail(to: user.email, subject: 'Welcome to Curoverse')
7
end
8
end