From 092294370d10931bad2277781457c5d985f529dc Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 13 Apr 2017 11:33:15 +0100 Subject: [PATCH] mailx: Improve the readability of the descriptions --- pages/common/mailx.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/mailx.md b/pages/common/mailx.md index 227000180..c73d04d12 100644 --- a/pages/common/mailx.md +++ b/pages/common/mailx.md @@ -2,15 +2,15 @@ > Send and receive mail. -- To send mail, the content is typed after the command and ended with Control-D: +- To send mail, the body is typed after the command and ended with Control-D: `mailx -s "{{subject}}" {{to_addr}}` -- Send mail with short content: +- Send mail with a short body: `echo "{{content}}" | mailx -s "{{subject}}" {{to_addr}}` -- Send mail with content which written in a file: +- Send mail with a body from a file: `mailx -s "{{subject}}" {{to_addr}} < {{content.txt}}`