# Is er een manier waarop ik e-mailmeldingen sneller kan verzenden?

**URL:** https://meta.discourse.org/t/is-there-a-way-i-can-send-email-notifications-faster/383103
**Category:** Self-hosting
**Tags:** notifications, email, hosting
**Created:** [18 september 2025 om 10:16 UTC](https://meta.discourse.org/t/is-there-a-way-i-can-send-email-notifications-faster/383103 "2025-09-18T10:16:41Z")
**Posts on this page:** 1
**Showing post:** 11

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [28 september 2025 om 15:18 UTC](https://meta.discourse.org/t/is-there-a-way-i-can-send-email-notifications-faster/383103/11 "2025-09-28T15:18:15Z")

</div>

> [@supermathie](#):
>
> Once the email jobs are `scheduled`, your sidekiq workers are working through them one at a time. Bumping up the sidekiq workers (set `DISCOURSE_SIDEKIQ_WORKERS` up from 5 to 10, 15, or 20 depending on server capacity) means more jobs get processed at the same time, so the queue gets emptied 2x/3x/4x faster.

Great insight, thank you 🙂

Does that `DISCOURSE_SIDEKIQ_WORKERS` have to be a multiple of 5? Could I set it to 7 for example?

I don’t have that parameter setting in my `app.yml` so I’ll assume it’s on a default of 5 somewhere.

Can I just create that setting under the existing unicorn workers setting, then rebuild?

Eg:

```plaintext
expose:
  - “443:443”

env:
    UNICORN_WORKERS: 8
    DISCOURSE_SIDEKIQ_WORKERS: 7

```

Is it as simple as that? 🤔

---

_[View the full topic](https://meta.discourse.org/t/is-there-a-way-i-can-send-email-notifications-faster/383103)._
