Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
11–20 of 70 posts
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#12The best smtp server out there!
How reliable is mail delivery ootb with dmarc, spf and dkm in your experience? (I guess it really depends on the reputation of the IP and not the mail server)
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#13[flagged]
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#14Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
Just make sure you set up everything (SPF, DKIM, DMARC) correctly, including the PTR reverse lookup of your server ( really important ).
Key tip: warm up your ip(s). I use mailreach.co ( it has a USD 25/m cost ), reached near 100% deliverability in a month.
I now have barely have any maintenance to do. It just works.
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#15Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
Roll your own with Amazon SES. Bang up a little script and call the CLI. for recipient in "${recipients[@]}"; do aws sesv2 send-email \ --from-email-address "$sender" \ --destination "ToAddresses=$recipient" \ --content "Simple={Subject={Data='$subject',Charset='UTF-8'},Body={Text={Data='$body',Charset='UTF-8'}}}" \ --region "$region" done I got that script from their website. Should be easy enough to knock something…
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#16Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
Roll your own with Amazon SES. Bang up a little script and call the CLI. for recipient in "${recipients[@]}"; do aws sesv2 send-email \ --from-email-address "$sender" \ --destination "ToAddresses=$recipient" \ --content "Simple={Subject={Data='$subject',Charset='UTF-8'},Body={Text={Data='$body',Charset='UTF-8'}}}" \ --region "$region" done I got that script from their website. Should be easy enough to knock something…
For context, getting out of the sandbox at every org I worked at was essentially a single ticket with the word please and had almost immediate approval.
For my own account for a low volume form notification tool I wrote AWS’s response was ‘We will not approve your request and we will not revisit this decision’.
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#17Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
I've been using Postal Server for 2 years ( https://docs.postalserver.io/ ) sending around 50k emails / day without any issue. Just make sure you set up everything (SPF, DKIM, DMARC) correctly, including the PTR reverse lookup of your server ( really important ). Key tip: warm up your ip(s). I use mailreach.co ( it has a USD 25/m cost ), reached near 100% deliverability in a month. I now have barely have any maintena…
I don't know much about mail server and this must be how people feel when they watch Hollywood movie hacker moment
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#18Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
I've been using Postal Server for 2 years ( https://docs.postalserver.io/ ) sending around 50k emails / day without any issue. Just make sure you set up everything (SPF, DKIM, DMARC) correctly, including the PTR reverse lookup of your server ( really important ). Key tip: warm up your ip(s). I use mailreach.co ( it has a USD 25/m cost ), reached near 100% deliverability in a month. I now have barely have any maintena…
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#19Is there a reliable solution we could use for our small startup? We want to shoot out daily emails to our users, like Bandcamp or Substack do. We could ofc use Mailchimp but always happy to explore self hosting. Would this or another solution work?
Roll your own with Amazon SES. Bang up a little script and call the CLI. for recipient in "${recipients[@]}"; do aws sesv2 send-email \ --from-email-address "$sender" \ --destination "ToAddresses=$recipient" \ --content "Simple={Subject={Data='$subject',Charset='UTF-8'},Body={Text={Data='$body',Charset='UTF-8'}}}" \ --region "$region" done I got that script from their website. Should be easy enough to knock something…
Re: Stalwart mail server (self-hosted all-in-one mail server) now as an admin webui
#20Earlier quoted context omitted.
Roll your own with Amazon SES. Bang up a little script and call the CLI. for recipient in "${recipients[@]}"; do aws sesv2 send-email \ --from-email-address "$sender" \ --destination "ToAddresses=$recipient" \ --content "Simple={Subject={Data='$subject',Charset='UTF-8'},Body={Text={Data='$body',Charset='UTF-8'}}}" \ --region "$region" done I got that script from their website. Should be easy enough to knock something…
Thanks! Any guide wrt using dkim / dmarc and such to ensure it's bulletproof? Any customizations you did beyond the CLI script above?
https://gist.github.com/johnnydecimal/e7b1a03e26b79239363b5d...
Though I've since updated that to include a .txt file as the body vs. typing it out in the email. But that's easy enough.
I might have added TXT records to satisfy DKIM etc., I don't remember. There are guides on the Amazon site; I'm a bit of a dummy when it comes to this so if I worked it out it must have been obvious enough.