Files
tldr/pages.zh/common/neomutt.md

24 lines
668 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# neomutt
> NeoMutt 命令行电子邮件客户端。
> 更多信息:<https://neomutt.org>。
- 打开指定的邮箱:
`neomutt -f {{path/to/mailbox}}`
- 开始撰写电子邮件并指定主题和 `cc` 收件人:
`neomutt -s "{{subject}}" -c {{cc@example.com}} {{recipient@example.com}}`
- 发送带有附件的电子邮件:
`neomutt -a {{path/to/file1 path/to/file2 ...}} -- {{recipient@example.com}}`
- 指定一个文件作为邮件正文:
`neomutt -i {{path/to/file}} {{recipient@example.com}}`
- 指定一个草稿文件,该文件包含邮件的头部和正文,格式为 RFC 5322
`neomutt -H {{path/to/file}} {{recipient@example.com}}`