2023-01-15 16:11:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2022-2023 The go-mail Authors
|
2022-06-17 15:05:54 +02:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2024-10-05 11:06:46 +02:00
|
|
|
// Package mail provides an easy to use interface for formating and sending mails. go-mail follows idiomatic Go style
|
|
|
|
// and best practice. It has a small dependency footprint by mainly relying on the Go Standard Library and the Go
|
|
|
|
// extended packages. It combines a lot of functionality from the standard library to give easy and convenient access
|
|
|
|
// to mail and SMTP related tasks. It works like a programatic email client and provides lots of methods and
|
|
|
|
// functionalities you would consider standard in a MUA.
|
2022-03-05 16:27:09 +01:00
|
|
|
package mail
|
2022-03-20 17:38:46 +01:00
|
|
|
|
2024-10-05 11:06:46 +02:00
|
|
|
// VERSION indicates the current version of the package. It is also attached to the default user
|
|
|
|
// agent string.
|
2024-10-16 09:50:22 +02:00
|
|
|
const VERSION = "0.5.1"
|