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

17
pages.zh/common/msmtp.md Normal file
View File

@@ -0,0 +1,17 @@
# msmtp
> 一个SMTP客户端。
> 它从`stdin`读取文本并将其发送到SMTP服务器。
> 更多信息请访问:<https://marlam.de/msmtp>。
- 使用在`~/.msmtprc`中配置的默认帐户发送电子邮件:
`echo "{{Hello world}}" | msmtp {{to@example.org}}`
- 使用在`~/.msmtprc`中配置的特定帐户发送电子邮件:
`echo "{{Hello world}}" | msmtp --account={{account_name}} {{to@example.org}}`
- 在没有配置帐户的情况下发送电子邮件。密码应在`~/.msmtprc`文件中指定:
`echo "{{Hello world}}" | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}`