add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,16 @@
# 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}}`