Skip to content

notKamui/Kourrier

Repository files navigation

Kourrier

From the French "Courrier" (mail)

A Kotlin/JVM wrapper around the JavaMail API

Kotlin Maven Central CodeFactor

Integration

You can import Kourrier directly with the jar files, or using your favorite dependency manager with the Maven Central repository:

Maven

<dependencies>
  <dependency>
    <groupId>com.notkamui.libs</groupId>
    <artifactId>kourrier</artifactId>
    <version>0.2.2</version>
  </dependency>
</dependencies>

Gradle

Kotlin DSL

repositories {
  mavenCentral()
}

dependencies {
  implementation("com.notkamui.libs:kourrier:0.2.2")
}

Groovy DSL

repositories {
  mavenCentral()
}

dependencies {
  implementation 'com.notkamui.libs:kourrier:0.2.2'
}

(In case you're using it with another language than Kotlin -- i.e. Java --, make sure you include kotlin stdlib too)

Usage

Please refer to the Wiki

Future plans

  • SMTP connection