Name

mail — stdin  stdout  - file  -- opt  --help  --version

Synopsis

mail [options] recipient

The mail program is a quick, simple email client. Most people want a more powerful program for regular use, but for quick messages from the command line or in scripts, mail is really handy.

To send a quick message:

mail [email protected]
Subject: my subject
I'm typing a message.
To end it, I type a period by itself on a line.

.              Ends the message
EOT
➜

To send a quick message using a single command, use a pipeline:

echo "Hello world" | mail -s "subject" [email protected]

To mail a file using a single command, you can use redirection or a pipeline:

mail -s "my subject" [email protected] < filenamecat filename | mail -s "my subject" [email protected]

Notice how easily you can send the output of a pipeline as an email message; this is useful in scripts.

Useful options

-s subject

Set the subject line of an outgoing message.

-v

Verbose mode: print messages about mail delivery.

-c addresses

CC the message to the given addresses, a comma-separated list.

-b addresses

BCC the message to the given addresses, a comma-separated list.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
13.58.216.74