From: Tom Hughes Date: Thu, 2 Sep 2010 22:40:49 +0000 (+0100) Subject: Use new ActionMail API to send emails X-Git-Tag: live~6185 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/2e2c95133bc1631b980a9a721502123ee046dffb Use new ActionMail API to send emails --- diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 13a8818fb..47c638f3a 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -60,7 +60,7 @@ class DiaryEntryController < ApplicationController @diary_comment.user = @user if @diary_comment.save if @diary_comment.user != @entry.user - Notifier::deliver_diary_comment_notification(@diary_comment) + Notifier.diary_comment_notification(@diary_comment).deliver end redirect_to :controller => 'diary_entry', :action => 'view', :display_name => @entry.user.display_name, :id => @entry.id diff --git a/app/controllers/message_controller.rb b/app/controllers/message_controller.rb index 82e3f30f2..8f67328e7 100644 --- a/app/controllers/message_controller.rb +++ b/app/controllers/message_controller.rb @@ -25,7 +25,7 @@ class MessageController < ApplicationController if @message.save flash[:notice] = t 'message.new.message_sent' - Notifier::deliver_message_notification(@message) + Notifier.message_notification(@message).deliver redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name end end diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index 9c5ac0d09..92b0f778a 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -130,7 +130,7 @@ class UserController < ApplicationController if @user.save flash[:piwik_goal] = PIWIK_SIGNUP_GOAL if defined?(PIWIK_SIGNUP_GOAL) flash[:notice] = t 'user.new.flash create success message', :email => @user.email - Notifier.deliver_signup_confirm(@user, @user.tokens.create(:referer => session.delete(:referer))) + Notifier.signup_confirm(@user, @user.tokens.create(:referer => session.delete(:referer))).deliver session[:token] = @user.tokens.create.token redirect_to :action => 'login', :referer => params[:referer] else @@ -214,7 +214,7 @@ class UserController < ApplicationController if user token = user.tokens.create - Notifier.deliver_lost_password(user, token) + Notifier.lost_password(user, token).deliver flash[:notice] = t 'user.lost_password.notice email on way' redirect_to :action => 'login' else @@ -356,7 +356,7 @@ class UserController < ApplicationController def confirm_resend if user = User.find_by_display_name(params[:display_name]) - Notifier.deliver_signup_confirm(user, user.tokens.create) + Notifier.signup_confirm(user, user.tokens.create).deliver flash[:notice] = t 'user.confirm_resend.success', :email => user.email else flash[:notice] = t 'user.confirm_resend.failure', :name => params[:display_name] @@ -419,7 +419,7 @@ class UserController < ApplicationController unless @user.is_friends_with?(new_friend) if friend.save flash[:notice] = t 'user.make_friend.success', :name => name - Notifier.deliver_friend_notification(friend) + Notifier.friend_notification(friend).deliver else friend.add_error(t('user.make_friend.failed', :name => name)) end @@ -653,7 +653,7 @@ private flash.now[:notice] = t 'user.account.flash update success confirm needed' begin - Notifier.deliver_email_confirm(user, user.tokens.create) + Notifier.email_confirm(user, user.tokens.create).deliver rescue # Ignore errors sending email end diff --git a/lib/daemons/gpx_import.rb b/lib/daemons/gpx_import.rb index 8250a67f5..698e858ba 100755 --- a/lib/daemons/gpx_import.rb +++ b/lib/daemons/gpx_import.rb @@ -21,15 +21,15 @@ while(true) do gpx = trace.import if gpx.actual_points > 0 - Notifier::deliver_gpx_success(trace, gpx.actual_points) + Notifier.gpx_success(trace, gpx.actual_points).deliver else - Notifier::deliver_gpx_failure(trace, '0 points parsed ok. Do they all have lat,lng,alt,timestamp?') + Notifier.gpx_failure(trace, '0 points parsed ok. Do they all have lat,lng,alt,timestamp?').deliver trace.destroy end rescue Exception => ex logger.info ex.to_s ex.backtrace.each {|l| logger.info l } - Notifier::deliver_gpx_failure(trace, ex.to_s + "\n" + ex.backtrace.join("\n")) + Notifier.gpx_failure(trace, ex.to_s + "\n" + ex.backtrace.join("\n")).deliver trace.destroy end