simple-java-mail
simple-java-mail copied to clipboard
Simple API, Complex Emails (Jakarta Mail smtp wrapper)
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...
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...
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....
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,...
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...
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())...
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.
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...
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/...
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...