mutt
text-based email client
TLDR
Start Mutt
$ mutt
Send email from command line$ echo "[body]" | mutt -s "[subject]" [recipient@example.com]
Send with attachment$ mutt -s "[subject]" -a [file.pdf] -- [recipient@example.com]
Open specific mailbox$ mutt -f [/path/to/mailbox]
Send with CC$ mutt -s "[subject]" -c [cc@example.com] [to@example.com]
Use alternate config$ mutt -F [~/.muttrc.alt]
SYNOPSIS
mutt [options] [address]
DESCRIPTION
mutt is a text-based email client. It's highly configurable with Vim-like keybindings.
The tool supports IMAP, POP3, and local mail. Features threading, PGP, and MIME.
PARAMETERS
ADDRESS
Email recipient address.-s SUBJECT
Email subject.-a FILE
Attach file.-c ADDRESS
CC address.-f MAILBOX
Open mailbox.-F FILE
Config file.--help
Display help information.
CAVEATS
Configuration required. Learning curve for keybindings. Text-based interface.
HISTORY
Mutt was created by Michael Elstrøm in 1995 as a fork of EstrøM, becoming a popular terminal mail client.

