Send email asynchronously with Rails and Sidekiq
1–4 of 4 posts
Re: Send email asynchronously with Rails and Sidekiq
#2Curious as to why you didn't use the ActionMailer delayed extension? https://github.com/mperham/sidekiq/wiki/Delayed-Extensions#a...
Also isn't it dangerous to override `EmailDeliverer.send` like that?
Re: Send email asynchronously with Rails and Sidekiq
#3Curious as to why you didn't use the ActionMailer delayed extension? https://github.com/mperham/sidekiq/wiki/Delayed-Extensions#a... Also isn't it dangerous to override `EmailDeliverer.send` like that?
Well that would be because I didn't know about the delayed extensions :) Will update the post accordingly.
And regarding .send… d'oh! I'm actually using .deliver in my code and changed it just before pressing publish. What can I say? It was 4am and I wasn't thinking properly.
Re: Send email asynchronously with Rails and Sidekiq
#4[deleted]