1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 17:15:32 +02:00

Create sendmail.md (#906)

This commit is contained in:
Dylan Rees 2016-06-20 18:56:54 -04:00 committed by Waldir Pimenta
parent 938286334c
commit 40223d8eef

15
pages/common/sendmail.md Normal file
View file

@ -0,0 +1,15 @@
# sendmail
> Send email from the command line.
- Send a message with the content of message.txt to the mail folder of local user `user_name`:
`sendmail user_name < message.txt`
- Send an email from you@yourdomain.com (assuming your local mail server is configured for this) to test@gmail.com containing the message in `message.txt`:
`sendmail -f test@gmail.com you@yourdomain.com < message.txt`
- Send an email from you@yourdomain.com (assuming your local mail server is configured for this) to test@gmail.com containing the file `file.zip`:
`sendmail -f test@gmail.com you@yourdomain.com < file.zip`