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)
+
+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