Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zandero/mail
- Owner: zandero
- License: apache-2.0
- Created: 2017-03-08T08:04:53.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T22:05:30.000Z (about 1 year ago)
- Last Synced: 2024-11-08T14:15:20.276Z (2 months ago)
- Topics: java, mail, mailgun, sendgrid
- Language: Java
- Size: 79.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Utility to build a mail MimeMessage## Setup
```xml
JAVA 8
com.zandero
1.0.2
JAVA 8com.zandero
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