Create sendmail.md (#906)

waldyrious/alt-syntax
Dylan Rees 2016-06-20 18:56:54 -04:00 committed by Waldir Pimenta
parent 938286334c
commit 40223d8eef
1 changed files with 15 additions and 0 deletions

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`