Skip to content

Commit

Permalink
GitBook: [master] 4 pages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
igr authored and gitbook-bot committed Sep 23, 2020
1 parent ea32839 commit 9d53e66
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
description: Send and receive emails in Java
---

# Jodd Mail

Sending emails in Java should be easier. **Jodd Mail** provides some nice classes for sending and receiving emails in an easier, practical way. They are just wrappers over the standard Java Mail library.
Expand Down
2 changes: 2 additions & 0 deletions SUMMARY.md
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)

10 changes: 10 additions & 0 deletions contact.md
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 %}

68 changes: 68 additions & 0 deletions installation.md
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 %}



0 comments on commit 9d53e66

Please sign in to comment.