Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zandero/mail

Mail utilities
https://github.com/zandero/mail

java mail mailgun sendgrid

Last synced: 17 days ago
JSON representation

Mail utilities

Awesome Lists containing this project

README

        

# mail
Utility to build a mail MimeMessage

## Setup
```xml
JAVA 8

com.zandero
mail
1.0.2


JAVA 8

com.zandero
mail
1.1.1

```

## Usage

```java
MailMessage message = new MailMessage();
message.to("[email protected]")
.from("[email protected]")
.subject("Test")
.html("

Hello

");

MimeMessage mime = message.getMessage(session);
```

## Included integrations

### SMTP

### SendGrid

### MailGun