As a System admin, sometimes we need to send mails to users or someone else from the server and for that we used to go with a web based interface to send email, is it really that handy ? Absolutely No.
Here in this tutorial, we’ll be using the mutt (a terminal email client) command to send email from command line interlace.
What is Mutt?
Mutt is a command line based Email client. It’s a very useful and powerful tool to send and read mails from command line in Unix based systems. Mutt also supports POP and IMAP protocols for receiving mails. It opens with a coloured interface to send Email which makes it user friendly to send emails from command line.
Mutt Features
Some other important features of Mutt is as follows:
- Its very Easy to install and configure.
- Allows us to send emails with attachments from the command line.
- It also has the features to add BCC (Blind carbon copy) and CC (Carbon copy) while sending mails.
- It allows message threading.
- It provides us the facility of mailing lists.
- It also support so many mailbox formats like maildir, mbox, MH and MMDF.
- Supports at least 20 languages.
- It also support DSN (Delivery Status Notification).
How to Install Mutt in Linux
We can install Mutt Client in our Linux box very easily with any package installers as shown.
# apt-get install mutt (For Debian / Ubuntu based system)
# yum install mutt (For RHEL / CentOS / Fedora based system)
Configuration files
Configuration files of Mutt Email client.
- Main Configuration file: To make changes globally for all users For mutt, you can make changes in its mail configuration file “/etc/Muttrc“.
- User Configuration file of Mutt : If you want to set some specific configuration for a particular user for Mutt, you can configure those settings in ~/.muttrc or ~/.mutt/muttrc files.
Basic Syntax of mutt command
mutt options recipient
Read Emails with Mutt
To read emails of the user with you are currently logged in, you just need to run “mutt” on the terminal, it will load the current user’s mailbox.
[root@tecmint ~]# mutt
To read the emails of a specific user, you need to specify which mail file to read. For example, You (as root) wants to read mails of user “John“, you need to specify his mail file with “-f” option with mutt command.
[root@tecmint ~]# mutt -f /var/spool/mail/john
You may also use “-R” option to open a mailbox in read-only mode.
Send an email with mutt command
In this example, following command will send a test Email to [email protected]. The “-s” option is used to specify Subject of the mail.
[root@tecmint ~]# mutt -s "Test Email" [email protected]
When you enter the above command in the terminal, it opens up with an interface and confirms the recipient address and subject of the mail and opens up the interface, here you can make changes to recipient mail address.
- Change recipient email address pressing t.
- Change Cc address with c.
- Attach files as attachments with a.
- Quit from the interface with q.
- Send that email by pressing y.
Note: When you press “y” it shows the status below that mutt is sending mail.
Add Carbon copy(Cc) and Blind Carbon copy(Bcc)
We can add Cc and Bcc with mutt command to our email with “-c” and “-b” option.
[root@tecmint ~]# mutt -s "Subject of mail" -c <email add for CC> -b <email-add for BCC> mail address of recipient
[root@tecmint ~]# mutt -s “Test Email” -c tecmint.com@gmail.com -b [email protected] [email protected]
Here in this example, root is sending email to [email protected] and putting [email protected] as Cc address and [email protected] as Bcc.
Send Emails with Attachments
We can send email from command line with attachments by using “-a” option with mutt command.
[root@tecmint ~]# mutt -s "Subject of Mail" -a <path of attachment file> -c <email address of CC> mail address of recipient
[root@tecmint ~]# mutt -s "Site Backup" -a /backups/backup.tar -c tar[email protected] [email protected]
Here in above snapshot, you can see that it shows attachment attached with the mail.
Use of muttrc file
If we want to change the senders name and email, then we need to Create a file in that particular user’s home directory.
[root@tecmint ~]# cat .muttrc
Add the following lines to it. Save and close it.
set from = "[email protected]" set realname = "Realname of the user"
Getting Help
To print the help menu of “mutt”, we need to specify “-h” option with it.
[root@tecmint ~]# mutt -h Mutt 1.4.2.2i (2006-07-14) usage: mutt [ -nRyzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f <file> ] mutt [ -nx ] [ -e <cmd> ] [ -a <file> ] [ -F <file> ] [ -H <file> ] mutt [ -i <file> ] [ -s <subj> ] [ -b <addr> ] [ -c <addr> ] <addr> [ ... ] mutt [ -n ] [ -e <cmd> ] [ -F <file> ] -p -v[v] options: -a <file> attach a file to the message -b <address> specify a blind carbon-copy (BCC) address -c <address> specify a carbon-copy (CC) address -e <command> specify a command to be executed after initialization -f <file> specify which mailbox to read -F <file> specify an alternate muttrc file -H <file> specify a draft file to read header from -i <file> specify a file which Mutt should include in the reply -m <type> specify a default mailbox type -n causes Mutt not to read the system Muttrc -p recall a postponed message -R mailbox in read-only mode -s <subj> specify a subject (must be in quotes if it has spaces) -v show version and compile-time definitions -x simulate the mailx send mode -y select a mailbox specified in your `mailboxes' list -z exit immediately if there are no messages in the mailbox -Z open the first folder with new message, exit immediately if none -h this help message
This is it with mutt command for now, read man pages of mutt for more information on mutt command.
Can this work with two factor authentication enabled in google mail?
No, the mutt email client will not work with two-factor authentication.
Can we use this with Zimbra?