Several of my self hosted services need to be able to send minor occasional emails for things like changing passwords or other notifications.

I’ve never been interested in the hassle of self-hosting my personal email, since I’ve heard about it being difficult. But for my little local services to have one admin@ or noreply@ to send from, with just a small handful of friends and family as users, maybe it’s simpler than a full personal email replacement would be? I’m not too concerned, for example, if they have to check their spam folders. As long as the email still lands. And probably wouldn’t need to worry about incoming emails.

What are you using for this type of thing? Hoping to have something not too complicated, and FOSS.

Edit: I also would like it to come from [email protected]

  • FranklyMail@lemmy.today
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 days ago

    I run a small email host, so biased a little bit. For the app-notification half, don’t put it on a mailbox host at all: smtp2go or SES, the way people are already saying here, is the right shape, because your services want an authenticated relay and nothing else, and outbound 25 is blocked on most residential lines and a lot of VPS providers anyway. The part that genuinely needs mailboxes is the friends-and-family half, and it’s worth separating: one host for the humans on your domain, one relay for the machines, so a noreply@ reputation problem never lands on the addresses people actually read. If you want FOSS on both sides, maddy is the honest answer and someone above already gave it. If you decide the human half isn’t worth running yourself, I wrote up that tradeoff at franklymail.com/vs/self-hosting, with the caveat that we’re paid and not FOSS, and we deliberately don’t do app or bulk sending, so it only answers half your question.

  • Decronym@lemmy.decronym.xyzB
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 days ago

    Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

    Fewer Letters More Letters
    DNS Domain Name Service/System
    IMAP Internet Message Access Protocol for email
    ISP Internet Service Provider
    LXC Linux Containers
    SMTP Simple Mail Transfer Protocol
    TLS Transport Layer Security, supersedes SSL
    VPS Virtual Private Server (opposed to shared hosting)
    k8s Kubernetes container management package

    8 acronyms in this thread; the most compressed thread commented on today has 13 acronyms.

    [Thread #106 for this comm, first seen 19th Sep 2026, 02:10] [FAQ] [Full list] [Contact] [Source code]

  • chaospatterns@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 days ago

    For inbound, I use Postfix + rspamd + dovecot directly to my server. Outbound, I used to send it directly from my server. I did this 15+ years with DKIM, DMARC, and SPF. It worked well for like 95% of the emails I sent, but I started relaying through smtp2go.com after I had just a couple really important emails not get delivered or me not be sure if the recipient saw them.

  • mschae@discuss.mschae23.de
    link
    fedilink
    English
    arrow-up
    0
    ·
    5 days ago

    I’m not too concerned, for example, if they have to check their spam folders. As long as the email still lands.

    In that case, it really isn’t that much of a hassle. A basic mail system isn’t that complicated to set up (just make sure you have proper authentication and such, don’t host an open relay!). I actually did this not too long ago, using maddy, which unlike the traditional postfix+dovecot setup (which I had also been looking into) means you don’t even have to host separate services for SMTP and IMAP, and it also automates most additional things that are necessary nowadays for you, like TLS, DKIM, DMARC, and so on. Not quite everything though, there’s still stuff needed to do manually, mostly to set the SPF and DMARC records in the DNS, but it’s been working really well so far.

    And really, the only mail provider you have to worry about for putting your mails into spam is gmail. They’re the worst. (maybe microsoft-hosted outlook too, but I haven’t encountered anyone using that)

    • korthrun@piefed.social
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      4 days ago

      Good answer! I get tired of the self hosted email FUD. Sure there’s more to it than “docker up” (Maddy is close though) but it’s not that hard and it’s thoroughly documented at this point. So many tutorials.