Reputation: 6905
In Rails 4.2, ActionMailer supports using the new background job abstraction layer called ActiveJob. ActiveJob puts jobs into background queues to be processed later outside of the flow of code that pushed the job into it.
The question is, since ActionMailer now supports automatic enqueuing of emails with the #deliver_later method, which queue do those emails get sent into.
Upvotes: 4
Views: 1093
Reputation: 6905
The answer is: according to the Sidekiq wiki, the "mailers" queue.
Upvotes: 4