CLI to manage emails via IMAP/SMTP. Use himalaya to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).
Himalaya is a CLI email client that lets you manage emails from the terminal using IMAP, SMTP, Notmuch, or Sendmail backends.
references/configuration.md (config file setup + IMAP/SMTP authentication)himalaya binary must already be on PATH. Check with himalaya --version.
~/.config/himalaya/config.tomlRun the interactive wizard to set up an account:
himalaya account configure default
Or create ~/.config/himalaya/config.toml manually:
[accounts.personal]
email = "[email protected]"
display-name = "Your Name"
default = true
backend.type = "imap"
backend.host = "imap.example.com"
backend.port = 993
backend.encryption.type = "tls"
backend.login = "[email protected]"
backend.auth.type = "password"
backend.auth.cmd = "pass show email/imap" # or use keyring
message.send.backend.type = "smtp"
message.send.backend.host = "smtp.example.com"
message.send.backend.port = 587
message.send.backend.encryption.type = "start-tls"
message.send.backend.login = "[email protected]"
message.send.backend.auth.type = "password"
message.send.backend.auth.cmd = "pass show email/smtp"
If using 163 mail, add backend.extensions.id.send-after-auth = true.
himalaya folder list
himalaya envelope list # INBOX (default)
himalaya envelope list --folder "Sent" # Specific folder
himalaya envelope list --page 1 --page-size 20 # With pagination
himalaya envelope list from [email protected] subject meeting
himalaya message read 42 # Plain text
himalaya message export 42 --full # Raw MIME
Recommended: Use template write | template send pipeline:
export EDITOR=cat
himalaya template write \
-H "To: [email protected]" \
-H "Subject: Email Subject" \
"Email body content" | himalaya template send
With CC:
export EDITOR=cat
himalaya template write \
-H "To: [email protected]" \
-H "Cc: [email protected]" \
-H "Subject: Email Subject" \
"Email body content" | himalaya template send
With attachments (Python fallback):
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
msg = MIMEMultipart()
msg['From'] = '[email protected]'
msg['To'] = '[email protected]'
msg['Subject'] = 'Email with attachment'
msg.attach(MIMEText('Email body', 'plain'))
with open('/path/to/file.pdf', 'rb') as f:
part = MIMEBase('application', 'octet-stream')
part.set_payload(f.read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename="file.pdf"')
msg.attach(part)
server = smtplib.SMTP_SSL('smtp.example.com', 465)
server.login('[email protected]', 'password')
server.send_message(msg)
server.quit()
Known limitations:
message write hangs in non-interactive mode - use template write | template sendmessage send may fail with header parsing - use template sendConfiguration requirement: Set message.send.save-to-folder in config.toml:
[accounts.default]
message.send.save-to-folder = "Sent"
himalaya message move 42 "Archive"
himalaya message copy 42 "Important"
himalaya message delete 42
himalaya flag add 42 --flag seen
himalaya flag remove 42 --flag seen
himalaya account list # List accounts
himalaya --account work envelope list # Use specific account
himalaya attachment download 42 # Save attachments
himalaya attachment download 42 --dir ~/dl # Save to directory
himalaya envelope list --output json
himalaya envelope list --output plain
RUST_LOG=debug himalaya envelope list
RUST_LOG=trace RUST_BACKTRACE=1 himalaya envelope list
pass, system keyring, or a command.template write | template send with export EDITOR=cat.backend.extensions.id.send-after-auth = true and message.send.save-to-folder = "Sent".