2023-10-21 20:31:31 +02:00
# Email Sender
2023-10-21 19:05:48 +02:00
## Description
2023-10-21 20:31:31 +02:00
`email-sender` is a simple Go library designed to send emails with optional attachments. It's built on top of the standard Go `net/smtp` library with additional support for sending HTML emails and handling multiple attachments.
2023-10-21 19:05:48 +02:00
## Features
- Send HTML emails.
- Attach multiple files to the email.
- Built-in support for TLS encryption.
- Simple API for sending emails.
## Installation
Clone this repository:
2023-10-21 20:31:31 +02:00
```bash
git clone https://gitea.urkob.com/urko/emailsender.git
2023-10-21 19:05:48 +02:00
```
## Usage
2023-12-26 10:09:54 +01:00
Check examples in [examples ](https://gitea.urkob.com/urko/emailsender/examples )
2023-10-21 19:05:48 +02:00
## Dependencies
- Go's standard `net/smtp` package
- Go's standard `crypto/tls` package for secure email sending.
## Contribution
Feel free to submit issues or pull requests if you find any bugs or have suggestions for improvements.