---
title: Email
kind: note
description: Resources Clients Outlook MailMate Mutt The Bat! Gmail eM Client Thunderbird Hosting providers eclipso Fastmail Gmail Google Workspace Infomaniak Microsoft 365 Soverin Zoho Mail Privacy-focused email…
words: 175
readingMinutes: 1
created: '2025-07-23T10:33:19+02:00'
updated: '2026-06-28T19:57:47+02:00'
---
# Resources
## Clients
- <span class="dead-link">Outlook</span>
- [MailMate](/notes/mailmate)
- <span class="dead-link">Mutt</span>
- [The Bat!](/notes/the-bat)
- <span class="dead-link">Gmail</span>
- [eM Client](https://emclient.com)
- [Thunderbird](https://www.thunderbird.net/)
## Hosting providers
- [eclipso](https://www.eclipso.eu/)
- [Fastmail](https://www.fastmail.com/)
- <span class="dead-link">Gmail</span>
- <span class="dead-link">Google Workspace</span>
- [Infomaniak](https://www.infomaniak.com/en)
- [Microsoft 365](/notes/microsoft-365)
- [Soverin](https://soverin.com/)
- <span class="dead-link">Zoho Mail</span>
## Privacy-focused email hosting
- [Posteo](https://posteo.de/en)
- [Proton Mail](https://proton.me/mail)
- [Tuta](https://tuta.com/) (previously Tutanota)
- [StartMail](https://www.startmail.com/)
- [mailbox.org](https://mailbox.org/en/)
- [Mailfence](https://mailfence.com/)
## Forwarding/aliases
- [Addy.io](/notes/addy-io)
- <span class="dead-link">Fastmail</span> supports masked addresses, optionally integrated with <span class="dead-link">1Password</span>
- [Forward Email](https://forwardemail.net/)
- <span class="dead-link">ImprovMX</span>
- [SimpleLogin](https://simplelogin.io/) supports masked addresses, optionally integrated with <span class="dead-link">Proton</span> Mail
## One-time inboxes
- [Mailinator](https://www.mailinator.com/)
- [10 Minute Mail](https://10minutemail.com/)
## [Security](/notes/security-technology) tests
- [MECSA](https://mecsa.jrc.ec.europa.eu/)
- [internet.nl](https://internet.nl/test-mail/)
- [Hardenize](https://www.hardenize.com/)
## Cleanup tools
- [quentinsf/IMAPdedup](https://github.com/quentinsf/IMAPdedup) - IMAP message de-duplicator
## [Development](/notes/software-development) tools
- <span class="dead-link">Mailpit</span> - acts as a catch-all SMTP server, displaying all received messages using a web UI
### Design
- [Can I email…](https://www.caniemail.com/) - support tables for HTML and CSS in emails
### Workflow testing
- [Mailinator](https://www.mailinator.com/)
- [Mailosaur](https://mailosaur.com/)
### Preview rendering
- [Litmus](https://www.litmus.com/)
	- [Litmus PutsMail](https://putsmail.com/) - free, fewer features
- [Emailpreviewservices.com](https://emailpreviewservices.com/en/)
- [Email on Acid](https://www.emailonacid.com/) - email predeployment checklist
## Deliverability
### Sending services
- <span class="dead-link">Twilio SendGrid</span>
- [Mailtrap](https://mailtrap.io/)
### Analysis
- [SendForensics](https://www.sendforensics.com/)
# FAQ
## Compose mail from the commandline ([Fedora](/notes/fedora-linux))
### Installation (once)
This will install `s-nail`, a commandline "MUA" (Mail User Agent) with built-in SMTP ("MTA") capability:
```shell
sudo dnf install mailx
```
The command `mail` will become a symlink to `s-nail`. Better verify this using:
```shell
ll -ld $(which mail)
```
### Configuration (once)
```text filename=~/.mailrc
set asksub  
set v15-compat  
set mta=smtps://apikey:SENDGRID_APIKEY_GOES_HERE@smtp.sendgrid.net:465 smtp-auth=login
set from=SENDER_ADDRESS_GOES_HERE
```
```shell
chmod 600 ~/.mailrc
```
### Usage
```shell
mail RECIPIENT_ADDRESS
# Type message here
# Press Ctrl+D to send, Ctrl+C to cancel
```
