Hello Lemmy, I would like to know how do you all read email.
- What email clients (or web UI) do you use? And on what platform?
- What is something you don’t like from the client?
- What is something you like from the client?
- What is something you don’t like from the email service?
- What is something you like from the email service?.
- Is there a feature you would like your client implemented?
- Do you have any particular method or workflow of going through and extensive inbox?
If you have any other comment it would be appreciated as well.
On my computer I use the web interface and on my phone I use Thunderbird. One thing I do is to delete or archive any message that does not need any action, and it has been a blessing, my emails are so much easier to go through.
That’s all, thank you in advance.
Mail on iOS, macOS
Searching is difficult because you have to keep fighting with it.
The UI, its ability to block remote content.
I’m confused by this part, are you talking about the email client or email provider?
I use primarily Gandi, and I don’t like their pricing model.
I love their spam headers and Sieve filtering.
Not really, most my problems with email come from how it’s implemented on various servers (lack of encryption) and its support for HTML rather than something more sane, like Markdown.
Not really, I just quickly work through the emails.
Technically, email supports markdown, it’s just not used by anyone. Email was invented many years before markdown, so it’s probably just more of a legacy thing than anything else.
Oh, I understand all that. I just don’t like it.
It does support markdown??? I always thought it didn’t.
The protocol supports anything. You can send an email in PDF format. And I don’t mean with a PDF attachment, I mean the email itself is formatted as a PDF.
The default that’s required to be supported by every client is
text/plain
, and the standard on top of that istext/html
, but you can providetext/markdown
instead if you want. If the client doesn’t support displaying markdown, it will probably let the user save it like it was an attachment. But, since you don’t really know what client the other user is using, the only really safe thing to send istext/plain
.You can also provide both markdown and plain text (and even just use the same text, since markdown is perfectly readable) inside a
multipart/alternative
. Then every client should be able to display it.Thank you for sharing this knowledge.