You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Sets the base URL used when resolving images sources in HTML text. Without this, the resource needs to be an absolute URL (or a file/classpath resource).
Copy file name to clipboardExpand all lines: modules/simple-java-mail/src/main/java/org/simplejavamail/email/internal/EmailException.java
+1
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ class EmailException extends MailException {
13
13
staticfinalStringERROR_READING_FROM_PEM_INPUTSTREAM = "Was unable to convert PEM data to X509 certificate";
14
14
staticfinalStringERROR_LOADING_PROVIDER_FOR_SMIME_SUPPORT = "Unable to load certificate (missing bouncy castle), is the S/MIME module on the class path?";
15
15
staticfinalStringERROR_RESOLVING_IMAGE_DATASOURCE = "Unable to dynamically resolve data source for the following image src: %s";
16
+
staticfinalStringERROR_PARSING_URL = "Unable to parse URL: %s";
assertThat(ConfigLoader.getProperty(EMBEDDEDIMAGES_DYNAMICRESOLUTION_BASE_DIR)).isEqualTo("unable to test this as the value is variable depending on junit working folder");
Copy file name to clipboardExpand all lines: modules/simple-java-mail/src/test/java/org/simplejavamail/email/internal/EmailPopulatingBuilderImpl1Test.java
Copy file name to clipboardExpand all lines: modules/simple-java-mail/src/test/java/org/simplejavamail/email/internal/EmailPopulatingBuilderImpl2Test.java
0 commit comments