simple-java-mail icon indicating copy to clipboard operation
simple-java-mail copied to clipboard

Simple API, Complex Emails (Jakarta Mail smtp wrapper)

Results 66 simple-java-mail issues
Sort by recently updated
recently updated
newest added

Hey there. Is it possible to have any influence on the signing process using the `DkimSigner`? I want to use Amazon SES over SMTP as my MTA but, as they...

enhancement
help wanted
Priority-Low

I am using the lib for a javafx application which I have ported from javafx8 to javafx11 and openjdk 11. In order to use the lib I had to modularize...

Priority-Low
need-user-input
needs-research

There's something to be said for avoiding a performance hit by moving the DKIM construction to the MailerBuilder so this is done only once rather than for each separate email....

enhancement
Priority-Low

Hi! Thank you for providing OSGI-headers in simple-java-mail to make it deployable as bundle! Unfortunately I get some trouble when trying to deploy it, together with it's required OSGI-bundles (core-module,...

bug
help wanted
Priority-Low

I create an email object from a .msg file that was in Outlook's plaintext format using outlookMsgToEmail(). When I then try to use emailToEML() to save the email as a...

bug
Priority-Low
needs-research
3rdparty-problem

Hi, here is my pom part: ``` org.simplejavamail simple-java-mail 6.0.4 ``` module-info: ``` requires org.simplejavamail; requires org.simplejavamail.core; ``` and app code: ``` Email email = EmailBuilder.startingBlank() .from(mailerJob.getFromName(), mailerJob.getFromAddr()) .to(mailerJob.getToAddr()) .withSubject(mailerJob.getSubject())...

help wanted
Priority-High
needs-research

Simple Java Mail supports reading Outlook messages to EML, MimeMessage and Email, but not back to Outlook messages. This should be possible with some changes to https://github.com/bbottema/outlook-message-parser.

Priority-Low
major feature
postponed indefinitely

I'm using simple-java-mail 6.0.3 and wondering if there is a way to configure the mailer to check connectivity when claiming. I've found it's possible that broken connections in the pool...

enhancement
help wanted
Priority-Low
needs-research

Hello, this is a request to review a DANE "email transport security" implementation and maybe add it to `simple-java-mail`. I (or my company) open-sourced a DANE validation implementation at https://github.com/fwiersENO/java-mail-dane/...

enhancement
Priority-Low
need-user-input
needs-research

We have an EML File where when running the following code: ```Java try (FileInputStream fileInputStream = new FileInputStream(emlFileName)) { Email email = EmailConverter.emlToEmail(fileInputStream); System.out.println(email.getHTMLText()); } ``` we get the following...