Skip to content

Instantly share code, notes, and snippets.

@cschramm
Created February 20, 2015 11:54
Show Gist options
  • Save cschramm/3190ad1c929409902efc to your computer and use it in GitHub Desktop.
Save cschramm/3190ad1c929409902efc to your computer and use it in GitHub Desktop.
Pass current locale to rails delivery jobs and use them in when performing
module ActionMailer
class DeliveryJob < ActiveJob::Base
def initialize(*args)
super(*args << I18n.locale.to_s)
end
alias_method :orig_perform, :perform
define_method :perform do |*args|
I18n.with_locale(args.pop) { orig_perform *args }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment