25 lines
415 B
Markdown
25 lines
415 B
Markdown
# Qmail
|
|
|
|
The qmail utility is a tool designed for simple, fast, and convenient email sending. It allows saving settings for multiple servers in a configuration file and then sending content from a file or standard input with a single simple command.
|
|
|
|
## install
|
|
|
|
Install go
|
|
|
|
```bash
|
|
$ make
|
|
$ make install
|
|
```
|
|
|
|
## Example
|
|
|
|
```bash
|
|
$ qmail -s myServer ./mail.eml
|
|
```
|
|
|
|
or
|
|
|
|
```bash
|
|
$ cat "text" | qmail -s myServer
|
|
```
|