From 34b3f4af66d3d384a4116ef901b26981a71b0e67 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 5 Mar 2022 12:10:20 +0100 Subject: [PATCH] Initial checkin --- .idea/.gitignore | 8 ++++++++ .idea/go-mail.iml | 9 +++++++++ .idea/inspectionProfiles/Project_Default.xml | 12 ++++++++++++ .idea/modules.xml | 8 ++++++++ README.md | 10 ++++++++-- go.mod | 3 +++ go.sum | 0 7 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/go-mail.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/modules.xml create mode 100644 go.mod create mode 100644 go.sum diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/go-mail.iml b/.idea/go-mail.iml new file mode 100644 index 0000000..338a266 --- /dev/null +++ b/.idea/go-mail.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..09dbac8 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,12 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e4c35b6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 287c318..a95d818 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -# go-mail -Simple and easy way to send mails in Go +# go-mail - Simple and easy way to send mails in Go + +[![Go Report Card](https://goreportcard.com/badge/github.com/wneessen/go-mail)](https://goreportcard.com/report/github.com/wneessen/go-mail) [![Build Status](https://api.cirrus-ci.com/github/wneessen/go-mail.svg)](https://cirrus-ci.com/github/wneessen/go-mail) buy ma a coffee + +The main idea of this library is to provide a simple interface to sending mails for +my [JS-Mailer](https://github.com/wneessen/js-mailer) project. + +This library is **WIP** an should not be considered "production ready" before v1.0 is released. \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..144db05 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/wneessen/go-mail + +go 1.17 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e69de29