diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index c63357861..5bc3173cb 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -1,10 +1,10 @@ class UserMailer < ActionMailer::Base - default :from => APP_CONFIG['no-reply-email'], :content_type => "text/plain" + default :from => APP_CONFIG['no-reply-email'] def new_user_notification(user) @user = user mail(:to => user.email, :subject => "Регистрация на проекте «#{APP_CONFIG['project_name']}»") do |format| - format.text + format.html end end end diff --git a/app/views/user_mailer/new_user_notification.haml b/app/views/user_mailer/new_user_notification.haml index 12d5c8f95..f3c6d1ec7 100644 --- a/app/views/user_mailer/new_user_notification.haml +++ b/app/views/user_mailer/new_user_notification.haml @@ -1,11 +1,12 @@ -== Здравствуйте, #{@user.name} +%p== Здравствуйте, #{@user.name}. -== Вы зарегистрированы на проекте «#{APP_CONFIG['project_name']}» и теперь можете войти в систему. +%p Вы зарегистрированы на проекте «ROSA Build System» и теперь можете войти в систему. -==Ваш email : #{@user.email} -==Ваш пароль: #{@user.password} +%p + ==Ваш email : #{@user.email} + %br/ + ==Ваш пароль: #{@user.password} - -== Команда поддержки #{APP_CONFIG['project_name']} +%p== Команда поддержки «ROSA Build System»