Skip to content

Commit 9e56571

Browse files
committed
Released in v4.2.0
1 parent 82820d4 commit 9e56571

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

NOTICE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@
1515
- Sun Java Mail API, shipped with JavaEE or as seperate download) (http://java.sun.com/products/javamail/)
1616
- Email Validation regular expressions, by Les Hazlewood, Casey Connor, Benny Bottema (https://github.com/bbottema/email-rfc2822-validator)
1717
- DKIM signing library https://github.com/markenwerk/java-utils-mail-dkim (based on https://github.com/usrflo/DKIM-for-JavaMail)
18+
- Outlook Message Parser https://github.com/bbottema/outlook-message-parser (based on http://auxilii.com/msgparser/)

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,27 @@ Simple Java Mail is available in Maven Central:
4545
<dependency>
4646
<groupId>org.simplejavamail</groupId>
4747
<artifactId>simple-java-mail</artifactId>
48-
<version>4.1.3</version>
48+
<version>4.2.0</version>
4949
</dependency>
5050
```
5151

5252
### Latest Progress ###
5353

54+
[v4.2.0](http://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C4.2.0%7Cjar) (12-Feb-2017)
55+
56+
**Major feature: Using the EmailConverter you can now convert between Outlook .msg, EML, MimeMessage and Email**!
57+
58+
- [#66](https://github.com/bbottema/simple-java-mail/issues/66): Feature: convert email to EML
59+
- [#65](https://github.com/bbottema/simple-java-mail/issues/65): Feature: read outlook messages from .msg file
60+
- [#64](https://github.com/bbottema/simple-java-mail/issues/64): **Feature: Added support for logging-only mode that skips the actual sending of emails**
61+
- [#69](https://github.com/bbottema/simple-java-mail/issues/69): Enhancement: Expanded EmailBuilder API to inlude more options for setting (multiple) recipients
62+
- [#70](https://github.com/bbottema/simple-java-mail/issues/70): Enhancement: Most public API now have defensive null-checks for required fields (Fail Fast support)
63+
- [#68](https://github.com/bbottema/simple-java-mail/issues/68): Bugfix: Name should be required for embedded images (added safeguards)
64+
- [#67](https://github.com/bbottema/simple-java-mail/issues/67): Bugfix: Error when name was omitted for attachment
65+
- minor: added methods on AttachmentResource that reads back the content as (encoded) String
66+
- other: internal testing is now done using Wiser SMTP test server for testing live sending emails
67+
68+
5469
[v4.1.3](http://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C4.1.3%7Cjar) (28-Jan-2017)
5570

5671
- [#61](https://github.com/bbottema/simple-java-mail/issues/61): Feature: Add support for providing your own Properties object

RELEASE.txt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,24 @@ http://www.simplejavamail.org
33
<dependency>
44
<groupId>org.simplejavamail</groupId>
55
<artifactId>simple-java-mail</artifactId>
6-
<version>4.1.2</version>
6+
<version>4.2.0</version>
77
</dependency>
88

9+
v4.2.0 (12-Feb-2017)
10+
11+
Major feature: Using the EmailConverter you can now convert between Outlook .msg, EML, MimeMessage and Email!
12+
13+
- #66: Feature: convert email to EML
14+
- #65: Feature: read outlook messages from .msg file
15+
- #64: Feature: Added support for logging-only mode that skips the actual sending of emails
16+
- #69: Enhancement: Expanded EmailBuilder API to inlude more options for setting (multiple) recipients
17+
- #70: Enhancement: Most public API now have defensive null-checks for required fields (Fail Fast support)
18+
- #68: Bugfix: Name should be required for embedded images (added safeguards)
19+
- #67: Bugfix: Error when name was omitted for attachment
20+
- minor: added methods on AttachmentResource that reads back the content as (encoded) String
21+
- other: internal testing is now done using Wiser SMTP test server for testing live sending emails
22+
23+
924
v4.1.3 (28-Jan-2017)
1025

1126
- #61: Feature: Add support for providing your own Properties object

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>simple-java-mail</artifactId>
88
<packaging>jar</packaging>
99
<name>Simple Java Mail</name>
10-
<version>4.1.4-SNAPSHOT</version>
10+
<version>4.2.1-SNAPSHOT</version>
1111
<description>Simple API, Complex Emails. A light weight wrapper for the JavaMail SMTP API</description>
1212
<url>http://http://www.simplejavamail.org/</url>
1313

0 commit comments

Comments
 (0)