How to Use the Linux mail Command

January 18, 2023

Introduction

The mail command is a utility that enables users to send and receive emails via the command line. The tool is useful for systems without a GUI environment or for sending automated emails using shell scripts.

In this tutorial, you will learn to use the Linux mail command.

How to use the Linux mail command - a tutorial.

Prerequisites

  • A system running Linux.
  • Access to the terminal (Ctrl+Alt+T).
  • An account with root privileges to install the utility.

Install Linux mail Command

In RHEL-based systems, the mail command is a part of the mailx rpm packages, while in Debian-based systems, the command is a part of the mailutils package. Check if the utility is installed by running:

mail

If the output states that the command is not installed, follow the steps below to install mail:

1. Run one of the following commands to install mail, depending on your operating system:

sudo yum install mailx
  • For Ubuntu/Debian/LinuxMint:
sudo apt install mailutils

2. When prompted to configure the postfix package, press TAB to select Ok and confirm with Enter.

Postfix configuration during mail command installation.

2. Select Internet Site in the package configuration window. Press TAB to select Ok and press Enter to confirm.

Configuring postfix general mail type.

3. Complete the basic configuration by entering the system mail name (the machine's fully qualified domain name).

Providing the postfix mail name.

Wait for the installation to complete.

Linux mail Command Syntax

The basic syntax for sending an email using the mail command is:

mail [ options ] -s [ subject ] [recipient_address]
  • The available [options] are explained in the section below.
  • The -s flag specifies the email subject.
  • The [recipient_address] is the email address/username of the person you are emailing.

After entering the command, mail prompts for any Cc recipients. If there are none, leave the field blank and press Enter to write the email body.

To send the email, press Ctrl+D.

Important: The mailutils package allows users to connect to a local SMTP (Simple Mail Transfer Protocol) server. Although it is possible to configure it for use with external domains, it requires additional postfix configuration. Moreover, the latest update from Google complicates the setup for Gmail as Google no longer allows less secure apps to sign into a Google account (except for Google Workspace or Google Cloud Identity clients).

Linux mail Command Options

The mail command options allow users to attach files, obtain debugging information, and further customize the program's operation.

Some of the available options are:

OptionDescription
-A [file_path]Attaches a file to the email.
-a=[header]Allows users to append the specified message to the email. It can also be used to send Carbon copies or Blind carbon copies of the email.
-dOutputs various information useful for debugging.
-EPrevents sending messages with an empty body.
-fUse to specify an alternate mailbox. Defaults to the user's mbox if no other file is specified. After quitting, mail writes the undeleted messages back to this file.
-IForces the interactive mode, even when input is not a terminal. For example, the special ~ command character is only available in interactive mode.
-iCauses mail to ignore tty interrupt signals.
-NPrevents initial message headers when reading mail or editing a mail folder.
-nInhibits reading /etc/mail.rc on startup.
-s "subject"Used to specify the email subject on the command line. Encase the subject in double quotes.

Refer to the sections below for concrete examples of using the mail command.

Linux mail Command Examples

In this tutorial, we will send mail to specific users on the system by specifying the username in place of the recipient address. To send mail to external domains, make sure to set up postfix to relay an external SMTP server.

Example 1: Send Mail with Subject and Body

The basic way of using mail to send emails is to specify the email subject using the -s flag and add the recipient. The command then enters the interactive mode, asking if you want to send Ccs and asking for the email body.

After entering all the information, press Ctrl+D to send the email.

For example, the following email is sent from the user 'bosko' to the 'root' user:

Sending an email using the mail command.

After sending the email, the command exits the interactive mode.

Example 2: Send Mail Using echo

Use the echo command to send an email without entering the interactive mode of the mail command. Write the email body and pipe the echo command output to the mail command.

The syntax is:

echo "[email body]" | mail -s "[subject]" [recipient]

For example:

Piping the echo command output to the mail command.

The echo command takes the string, and the pipe (|) passes the string to the mail command.

Example 3: Send Email Using Redirection

Another way to provide the email body is to use redirection (<<<). Using redirection also avoids the mail command interactive mode and sends the email without any prompts.

The syntax is:

mail -s "[subject]" [recipient] <<< "[email body]"

For example:

Passing a string to mail using redirection.

In the above example, we create an email using the mail command and pass the string as the message body using redirection.

Example 4: Send Email from File

The mail command allows users to provide the email body from an existing file. This option saves time and facilitates sending large messages without writing them in the command line.

The syntax is:

mail -s "[subject]" [recipient] < [file_path]

For example:

Providing mail command input using a file.

The command takes input from the specified file and sends it as the email body. Providing input from files is useful when calling the mail command from shell scripts or other programs, such as the ones written in Perl or PHP.

Example 5: Send Mail to Multiple Receivers

To send mail to multiple receivers, specify the list of recipients in a comma-separated list. The syntax is:

mail -s "[subject]" [recipient1], [recipient2] <<< "[mail body]"

For example:

Sending mail to multiple recipients in Linux via the CLI.

Alternatively, send a carbon copy by entering the command's interactive mode. To send a blind carbon copy of the email, use the -a (--append) flag. The syntax is:

mail -s "[subject]" --append='BCC:[recipient1],[recipient2]...'
Sending email Cc and Bccs using the mail command.

First, we specify the subject and the Bcc recipients, and then the command enters interactive mode, asking for the email recipient, Cc recipients, and email body. The difference between Cc and Bcc is that Cc allows all recipients to see who else got the email, which isn't the case with Bcc.

Example 6: Send Attachments

The mail command allows users to send email attachments using the -A flag. Specify the file path to attach the file to the email. Note that the file is base64 encoded before sending and that the recipient must decode it upon receiving.

The syntax is:

mail -s "[subject]" -A [file_path]
Sending an email attachment via the command line.

Press Ctrl+D to send the mail with the encoded attachment. Refer to the section below on saving attachments to see the result.

Example 7: Read Mail

Check the mailbox for the current user by running the mail command without any options or flags. Since most emails in the tutorial were sent to the root user, we will check the mailbox for that user:

Opening the email inbox using the mail command.

The output shows the new messages, the sender, the date it was received, and the subject. To open an email, enter the email number and press Enter. For example, we will open email number 8:

Reading emails using the terminal.

The output shows the sender's address, the email subject, the recipients, the email date and time, and the contents.

After opening the email, the command waits for further input from the user. Open the next email by entering (+) in the prompt, or access the previous email by entering (-). Return to the mailbox by pressing Ctrl+D.

Example 8: Delete Mail

To delete an email, open the email you want to delete, press d, and confirm with Enter. To delete multiple emails at once, open the mailbox and enter d followed by the email numbers you want to delete.

For example, the following command deletes emails numbered 1 and 2:

d 1 2

To delete a range of emails, specify the first and last email in the range separated by a dash. For example, to delete emails 1-10, open the mailbox and run:

d 1-10

To delete all received mail, open the mailbox and run:

'd*'

Example 9: Save Attachments

The mail command sends attachments after encoding them in base64. That means that the attachments are converted into text, and the recipient must decode them.

For example, we have previously sent an email with an attachment to the root user. After opening the email, the output states that it contains the email body (text) and additional content encoded in base64:

Opening an email containing an attachment using the CLI.

To decode the attachment, save the encoded data in a file, and use the base64 command to decode it. The syntax is:

base64 -d [encoded-data-file-path]

For example, the decoded file we sent looks like this:

Decoding a base64 encoded file.

Example 10: Incorporate mail in Scripts

The mail command can be incorporated in shell scripts to automate some tasks. For example, follow the steps below to create a Bash shell script that reports disk usage via email:

1. Create a script using a text editor of your choice.

2. Paste the following lines and replace the [recipient] with the address/es you want the report to go to:

#!/bin/bash
du -sh | mail -s "Disk usage report" [recipient]

3. Save the file and execute the script using the following syntax:

bash [script_name.sh]

The script executes and sends an email to the specified address with the du command output.

Conclusion

This tutorial showed how to use the mail command in Linux. The command is a great CLI utility that saves time and automates tasks. Users can easily combine mail with other commands and send the output to the desired address.

Read our tutorial to learn more about important Linux commands and download a cheat sheet to always have them at hand.

Was this article helpful?
YesNo
Bosko Marijan
Having worked as an educator and content writer, combined with his lifelong passion for all things high-tech, Bosko strives to simplify intricate concepts and make them user-friendly. That has led him to technical writing at PhoenixNAP, where he continues his mission of spreading knowledge.
Next you should read
How to Back up Office 365 Emails
November 10, 2021

Follow this step-by-step tutorial to learn how to back up your Office 365 mailbox to protect it from outages, service disruptions and human error.
Read more
Linux bc Command with Examples
January 12, 2023

Learn to use the bc command, a CLI utility allowing users to perform complex mathematical and arithmetic calculations.
Read more
Linux adduser Command with Examples
November 17, 2022

The adduser command is the preferable and interactive way to add new user accounts and groups to a Linux system. Learn how to use the command in this guide.
Read more
Linux ifconfig Command With Examples
November 16, 2022

The ifconfig command is still widely used to configure any network interface in Linux. Read this tutorial to learn about ifconfig.
Read more