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

16 lines
639 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.

# sendmail
> 发送电子邮件。
> 更多信息:<https://manned.org/sendmail>。
-`message.txt` 的内容发送到本地用户 `username` 的邮件目录:
`sendmail {{username}} < {{message.txt}}`
- 从 you@yourdomain.com假设邮件服务器已为此配置发送电子邮件到 test@gmail.com内容为 `message.txt` 中的信息:
`sendmail -f {{you@yourdomain.com}} {{test@gmail.com}} < {{message.txt}}`
- 从 you@yourdomain.com假设邮件服务器已为此配置发送电子邮件到 test@gmail.com内容为文件 `file.zip`
`sendmail -f {{you@yourdomain.com}} {{test@gmail.com}} < {{file.zip}}`