Files
notes/divers/send_TLS_email_from_Linux_bash_01.md

27 lines
219 B
Markdown
Raw Normal View History

2026-03-13 10:54:55 +01:00
# How to send an email from Linux in command line using a TLS SMTP server
2026-03-13 10:51:56 +01:00
2026-03-13 10:54:55 +01:00
## Configure msmtp for TLS
2026-03-13 10:51:56 +01:00
```bash
printf "Subject: Test Email\n\nThis is a test email." | msmtp -v vplesnila@gmail.com
```