I’m currently transitioning from Bamboo to Swoosh in my Elixir project for handling email deliveries. In Bamboo, I was using the deliver_later
and deliver_later!
functions to send emails asynchronously. Now that I’m switching to Swoosh, I’m looking for guidance on the best way to replicate this functionality.
Could someone please provide advice on:
- How to properly replace Bamboo’s
deliver_later
anddeliver_later!
with equivalent functionality in Swoosh. - Any specific configurations or setups required to ensure asynchronous email delivery works smoothly with Swoosh.
- Best practices or tips for making this transition as seamless as possible.
Thanks in advance for your insights!