Skip to content

Commit f374aae

Browse files
committed
Merge remote-tracking branch 'remotes/origin/hotfix-5.0.5'
2 parents a414a3e + 5582160 commit f374aae

File tree

4 files changed

+22
-47
lines changed

4 files changed

+22
-47
lines changed

README.md

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![APACHE v2 License](https://img.shields.io/badge/license-apachev2-blue.svg?style=flat)](LICENSE-2.0.txt) [![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20a%3A%22simple-java-mail%22) [![Javadocs](https://img.shields.io/badge/javadoc-5.0.0-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/simple-java-mail) [![Build Status](https://img.shields.io/travis/bbottema/simple-java-mail.svg?style=flat)](https://travis-ci.org/bbottema/simple-java-mail) [![Codacy](https://img.shields.io/codacy/9f142ca8c8c640c984835a8ae02d29f3.svg?style=flat)](https://www.codacy.com/app/b-bottema/simple-java-mail)
1+
[![APACHE v2 License](https://img.shields.io/badge/license-apachev2-blue.svg?style=flat)](LICENSE-2.0.txt) [![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20a%3A%22simple-java-mail%22) [![Javadocs](https://img.shields.io/badge/javadoc-5.0.5-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/simple-java-mail) [![Build Status](https://img.shields.io/travis/bbottema/simple-java-mail.svg?style=flat)](https://travis-ci.org/bbottema/simple-java-mail) [![Codacy](https://img.shields.io/codacy/9f142ca8c8c640c984835a8ae02d29f3.svg?style=flat)](https://www.codacy.com/app/b-bottema/simple-java-mail)
22

33
# Simple Java Mail #
44

@@ -64,36 +64,24 @@ Simple Java Mail is available in [Maven Central](https://search.maven.org/#searc
6464
<dependency>
6565
<groupId>org.simplejavamail</groupId>
6666
<artifactId>simple-java-mail</artifactId>
67-
<version>5.0.4</version>
67+
<version>5.0.5</version>
6868
</dependency>
6969
```
7070

7171
### Latest Progress ###
7272

73-
v5.0.4 (22-September-2018)
73+
v5.0.1 - [v5.0.5](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C5.0.5%7Cjar)
7474

75-
- [#168](https://github.com/bbottema/simple-java-mail/issues/168) Properties aquired through ConfigLoader should be typed explicitly and converted if necessary
75+
- v5.0.5 (3-Oktober-2018): [#137](https://github.com/bbottema/simple-java-mail/issues/137) When replying to an email with HTML, the result body is
76+
empty
77+
- v5.0.4 (22-September-2018): [#168](https://github.com/bbottema/simple-java-mail/issues/168) Properties aquired through ConfigLoader should be typed explicitly and converted if necessary
78+
- v5.0.3 (11-April-2018): [#136](https://github.com/bbottema/simple-java-mail/issues/136) ServerConfig class should be public API
79+
- v5.0.2 (7-April-2018): [#135](https://github.com/bbottema/simple-java-mail/issues/135) trustingAllHosts should be public on the Builder API
80+
- v5.0.2 (7-April-2018): [#131](https://github.com/bbottema/simple-java-mail/issues/131) NamedDataSource should implement EncodingAware
81+
- v5.0.1 (10-March-2018): [#130](https://github.com/bbottema/simple-java-mail/issues/130) java.lang.ClassNotFoundException: net.markenwerk.utils.mail.dkim.DkimMessage. Solves the issue of missing optional class DKIM even when not used
82+
7683

77-
78-
v5.0.3 (11-April-2018)
79-
80-
- [#136](https://github.com/bbottema/simple-java-mail/issues/136) ServerConfig class should be public API
81-
82-
83-
v5.0.2 (7-April-2018)
84-
85-
- [#135](https://github.com/bbottema/simple-java-mail/issues/135) trustingAllHosts should be public on the Builder API
86-
- [#131](https://github.com/bbottema/simple-java-mail/issues/131) NamedDataSource should implement EncodingAware
87-
88-
89-
v5.0.1 (10-March-2018)
90-
91-
- [#130](https://github.com/bbottema/simple-java-mail/issues/130) java.lang.ClassNotFoundException: net.markenwerk.utils.mail.dkim.DkimMessage
92-
93-
Solves the issue of missing optional class DKIM even when not used
94-
95-
96-
v5.0.0 (14-Februari-2018)
84+
[v5.0.0](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C5.0.0%7Cjar) (14-Februari-2018)
9785

9886
Also see the [migration notes](http://www.simplejavamail.org/#/migrate500)
9987

RELEASE.txt

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,14 @@ http://www.simplejavamail.org
66
<version>5.0.4</version>
77
</dependency>
88

9-
v5.0.4 (22-September-2018)
10-
11-
- #168: Properties aquired through ConfigLoader should be typed explicitly and converted if necessary
12-
13-
14-
v5.0.3 (11-April-2018)
15-
16-
- #136: ServerConfig class should be public API
17-
18-
19-
v5.0.2 (7-April-2018)
20-
21-
- #135: trustingAllHosts should be public on the Builder API
22-
- #131: NamedDataSource should implement EncodingAware
23-
24-
25-
v5.0.1 (10-March-2018)
26-
27-
- #130 java.lang.ClassNotFoundException: net.markenwerk.utils.mail.dkim.DkimMessage
28-
29-
Solves the issue of missing optional class DKIM even when not used
9+
v5.0.1 - v5.0.5
10+
11+
- v5.0.5 (3-Oktober-2018): #137: When replying to an email with HTML, the result body is empty
12+
- v5.0.4 (22-September-2018): #168: Properties aquired through ConfigLoader should be typed explicitly and converted if necessary
13+
- v5.0.3 (11-April-2018): #136: ServerConfig class should be public API
14+
- v5.0.2 (7-April-2018): #135: trustingAllHosts should be public on the Builder API
15+
- v5.0.2 (7-April-2018): #131: NamedDataSource should implement EncodingAware
16+
- v5.0.1 (10-March-2018): #130 java.lang.ClassNotFoundException: net.markenwerk.utils.mail.dkim.DkimMessage. Solves the issue of missing optional class DKIM even when not used
3017

3118

3219
v5.0.0 (14-Februari-2018)

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>5.0.5-SNAPSHOT</version>
10+
<version>5.0.6-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

src/main/java/org/simplejavamail/email/EmailBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public EmailPopulatingBuilder replyingTo(@Nonnull final MimeMessage emailMessage
306306
.withSubject(generatedReply.getSubject())
307307
.to(generatedReply.getRecipients())
308308
.withPlainText(LINE_START_PATTERN.matcher(defaultTo(repliedTo.getPlainText(), "")).replaceAll("> "))
309-
.withHTMLText(format(htmlTemplate, defaultTo(repliedTo.getPlainText(), "")))
309+
.withHTMLText(format(htmlTemplate, defaultTo(repliedTo.getHTMLText(), "")))
310310
.withHeaders(generatedReply.getHeaders())
311311
.withEmbeddedImages(repliedTo.getEmbeddedImages());
312312
}

0 commit comments

Comments
 (0)