-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea32839
commit 9d53e66
Showing
4 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# Table of contents | ||
|
||
* [Jodd Mail](README.md) | ||
* [Installation](installation.md) | ||
* [Email Definition](email-definition.md) | ||
* [Sending Emails](sending-emails.md) | ||
* [Receiving Emails](receiving-emails.md) | ||
* [FAQ](faq.md) | ||
* [Contact](contact.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
description: Let's keep in touch! | ||
--- | ||
|
||
# Contact | ||
|
||
{% hint style="success" %} | ||
## info@jodd.org | ||
{% endhint %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
description: Tips on how to install Jodd Mail library in your app | ||
--- | ||
|
||
# Installation | ||
|
||
**Jodd Mail** is released on Maven Central. You can use the following snippets to add it to your project: | ||
|
||
{% tabs %} | ||
{% tab title="Maven" %} | ||
```markup | ||
<dependency> | ||
<groupId>org.jodd</groupId> | ||
<artifactId>jodd-mail</artifactId> | ||
<version>x.x.x</version> | ||
</dependency> | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Gradle" %} | ||
```text | ||
implementation 'org.jodd:jodd-mail.x.x' | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Gradl.kt" %} | ||
```kotlin | ||
implementation("org.jodd:jodd-mail.x.x") | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Scala SBT" %} | ||
```scala | ||
libraryDependencies += "org.jodd" % "jodd-mail" % "x.x.x" | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Ivy" %} | ||
```markup | ||
<dependency org="org.jodd" name="jodd-mail" rev="x.x.x" /> | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Leiningen" %} | ||
``` | ||
[org.jodd/jodd-mail "x.x.x"] | ||
``` | ||
{% endtab %} | ||
|
||
{% tab title="Buildr" %} | ||
``` | ||
'org.jodd:jodd-mail:jar:x.x.x' | ||
``` | ||
{% endtab %} | ||
{% endtabs %} | ||
|
||
That is all! | ||
|
||
### Snapshots | ||
|
||
**Jodd JSON** snapshots are published on [Maven Central Snapshot repo](https://oss.sonatype.org/content/repositories/snapshots/org/jodd/jodd-lagarto/). | ||
|
||
{% hint style="warning" %} | ||
Snapshots are released manually. Feel free to contact me if you need a new SNAPSHOT release sooner. | ||
{% endhint %} | ||
|
||
|
||
|