first commit

This commit is contained in:
Timofey.Kovalev
2025-10-14 10:35:42 +03:00
commit 9972005cb5
9 changed files with 386 additions and 0 deletions

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# 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
```