Mail at the command line
Leaner Letter
© Hao Wang, Fotolia
The simple mailx command-line mail client handles mail either interactively or via command-line options. Although it lacks the convenience of a GUI-based tool, mailx compares well in scripting.
Thunderbird, Evolution, or Kmail are not the only options as mail clients. Although the major graphical mail clients offer users a great deal of convenience, sometimes a command-line solution is an advantage – both Mutt [1] and the lean mailx [2] program support batch options in the shell.
Most distributions include mailx by default. OpenSUSE and Debian include the package on their installation media. On openSUSE, /bin/mail is a symlink that points to /usr/bin/mailx, whereas Debian systems do things the other way around: /usr/bin/mailx points to /usr/bin/mail. The following commands and command options were all tested on Debian 4.0 "Etch."
Launching the mail client with mailx at the shell prompt takes you into an interactive environment. The client shows the content of your inbox; the default setting for this on most systems is /var/mail/username. Then you will see an overview of the messages, including the sender, date, size, and subject line.
Typing ? and pressing Enter outputs a quick help file about using the mailer. Entering the number and pressing Enter is the the easiest way to display a message. The Enter key also scrolls down, although you can use the up and down arrows, too. Pressing Q quits the display and takes you back to the main screen. If the messages have scrolled out of the window, you can press H and Enter to display them again.
Mailx has two approaches to terminating the program: pressing X and Enter quits the mail client without removing messages you have read from the inbox, and Q plus Enter does the following:
Saved 2 messages in /home/petros ilie/mbox Held 3 messages in /var/mail/pet rosilie
Typing D and pressing Enter deletes messages. Again, you can select messages to delete by specifying their numbers. For example, d 1 3 deletes the first and third messages. Also, you can select a range, as in d 1-10, which deletes the first 10 messages, or d *, which deletes all messages. If you mistakenly delete a message, u will undelete it. The command uses the same combinations of digits as the d option. Entering R lets you answer a message, and pressing M starts a new message. To specify the target address, use the m command:
m petronella@huhnix.org
Mailx then prompts you to enter the subject line before you can move on to the message itself.
When you are done, type a period followed by Enter to add more recipients after Cc: (carbon copy):
Cc:ole@huhnix.org,max@huhnix.org
If you prefer to launch your favorite editor to compose messages, type ~v directly after the subject line. Mailx evaluates the $VISUAL environmental variable to identify your favorite editor. If you like to work with, for example, Joe, you can set up the editor for mailx by entering export VISUAL=joe.
Mailx shows its strength, flexibility, and speed in the shell. The generic command line is:
mailx [Option] user@target.tld
Users can define options, such as the subject line (-s), the mail address for the bcc (blind carbon copy) field (-b), further recipients to cc (-c), and so on. Don't forget to use quotes for blanks and non-standard characters.
The mail body – that is, the message text – is still missing. For a short message, echo is probably a good choice. Swapping the body text out to a file makes sense for longer texts. Mailx can read the file from standard input.
If you need to troubleshoot your setup, -v is a big help. On Debian systems, mailx just tells the user that it has sent a status report, which then turns up a short time later in the inbox. The "Using Mailx Options" box shows an example of the use of mailx options.
Using uuencode is the only way to add an attachment to a message. This tool converts binary files, such as images or executables, into printable ASCII characters. After doing so, the text file can be mailed (see the "Sending Attachments" box). The recipient then sees the file as a text block between the keywords begin and end. Uudecode converts the file back. The command uudecode attach_image.txt results in the file hej.jpg.
Things are easier if you run Mutt in batch mode. The Mutt mail client not only offers -s for subject, -c for copy, and -b for blind copy options referred to in this article, but also the -a parameter for simple attachment sending. See the "Sending Attachments" box.
Using Mailx Options
Sending a copy
nonumber $ mailx -s 'Hello!' petronella@huhnix.org -c petrosilie@huhnix.org [...]
Message with echo
nonumber $ echo 'Hello, this is a test.' | mailx -s 'Hello!' petronella@huhnix.org -c petrosilie@huhnix.org
Swapping out a message text
nonumber $ mailx -s 'Hello!' petronella@huhnix.org < mail.txt
Troubleshooting via status report
nonumber $ <B>echo 'Hello, this is a test.' | mailx -v -s 'Hello!' petronella@huhnix.org<B> Mail Delivery Status Report will be mailed to <huhn>.
Sending Attachments
Attachments with uuencode and mailx
nonumber $ uuencode hej.jpg hej.jpg > attach_image.txt $ mailx -s 'photo' petronella@huhnix.org < attach_image.txt
Attachments with Mutt
nonumber $ mutt -s 'Photo' -a hej.jpg petronella@huhnix.org < mail.txt
Infos
Our Services
Direct Download
Read full article as PDF » 090-091_commandline.pdf (241.07 kB)Tag Cloud
News
-
Google and NASA Partner in Quantum Computing Project
Vendor D-Wave scores big with a sale to NASA's Quantum Intelligence Lab.
-
Mageia Project Announces Mageia 3 Linux
Many package updates and Steam integration highlight the latest from the Mandriva-based community Linux.
-
FSF Outs the World Wide Web Consortium over DRM Proposal
Richard Stallman calls for the W3C to remain independent of vendor interests.
-
Debian 7.0 Debuts
The new release supports nine architectures, 73 human languages, and zero non-Free components.
-
Alpha Version of Fedora 19 Released
Fedora developers release the first alpha version of Fedora 19, known as Schrödinger’s Cat, for general testing. The final release is expected in July 2013.
-
ack 2.0 Released
ack is a grep-like, command-line tool that has been optimized for programmers to search large trees of source code.
-
SUSE Studio 1.3 Released
New features in SUSE Studio 1.3 include enhanced cloud integration, VM platform support, and lifecycle management.
-
Xen To Become Linux Foundation Collaborative Project
The Linux Foundation recently announced that the Xen Project is becoming a Linux Foundation Collaborative Project.
-
RunRev Releases Open Source Version of LiveCode
Open source version of LiveCode is now available for developing apps, games, and utilities for all major platforms.
-
OpenDaylight Project Formed
OpenDaylight is an open source software-defined networking project committed to furthering adoption of SDN and accelerating innovation in a vendor-neutral and open environment.
