summaryrefslogtreecommitdiff
path: root/app/mailers/emails/profile.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-11 21:17:28 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-09-11 21:17:28 +0300
commit73446fe15e35c6e9d077b071bec7f06f64a1b6b9 (patch)
tree06c170da234b166c7d8286709603e29588d878b4 /app/mailers/emails/profile.rb
parentfc6ed495487084b051d7228fdafe814784ea3ea0 (diff)
downloadgitlab-ce-73446fe15e35c6e9d077b071bec7f06f64a1b6b9.tar.gz
Email templates when user was added to group
Diffstat (limited to 'app/mailers/emails/profile.rb')
-rw-r--r--app/mailers/emails/profile.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/mailers/emails/profile.rb b/app/mailers/emails/profile.rb
new file mode 100644
index 00000000000..bcd44f9476c
--- /dev/null
+++ b/app/mailers/emails/profile.rb
@@ -0,0 +1,15 @@
+module Emails
+ module Profile
+ def new_user_email(user_id, password)
+ @user = User.find(user_id)
+ @password = password
+ mail(to: @user.email, subject: subject("Account was created for you"))
+ end
+
+ def new_ssh_key_email(key_id)
+ @key = Key.find(key_id)
+ @user = @key.user
+ mail(to: @user.email, subject: subject("SSH key was added to your account"))
+ end
+ end
+end