1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/msmtp.md
코드싸이 feb91d75ea
mpv: fix typo, common/m*: add and update Korean translation (#14664)
* common/m*: add and update Korean translation

* mpv: fix typo
2024-11-07 09:27:03 +09:00

681 B

msmtp

SMTP 클라이언트. stdin에서 텍스트를 읽고 이를 SMTP 서버로 전송합니다. 더 많은 정보: https://marlam.de/msmtp.

  • ~/.msmtprc에 설정된 기본 계정을 사용하여 이메일 전송:

echo "{{안녕하세요}}" | msmtp {{to@example.org}}

  • ~/.msmtprc에 설정된 특정 계정을 사용하여 이메일 전송:

echo "{{안녕하세요}}" | msmtp --account={{계정_이름}} {{to@example.org}}

  • 설정된 계정 없이 이메일 전송. 비밀번호는 ~/.msmtprc 파일에 명시해야 합니다:

echo "{{안녕하세요}}" | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}