jodd-mail
jodd-mail copied to clipboard
Simple Java Mail library.
I received the following Exception: ``` jodd.mail.MailException: Failed to process fetched messages; MailWrapper.of(mail, folder)).toList() ); } ``` Analysing the code I found a bug (at least I think this is...
` public static void sendEmail(String to, String subject, String body) { try { Email email = Email.create() .from("[[email protected]](mailto:[email protected])") .to(to) .subject(subject) .textMessage(body) .htmlMessage("HTML message...") .priority(PRIORITY_HIGHEST); SmtpServer smtpServer = MailServer.create() .ssl(false) .host("mail.example.eu")...
## Current behavior at the moment seems just plain imap is supported; would be interesting to access `gimap` protocol https://javaee.github.io/javamail/docs/api/com/sun/mail/gimap/package-summary.html ## Expected behavior have way to enable `gimap` protocol to...
The `MailServer.Builder.storeAttachmentsIn()` method isn't really well documented for users. The way I understand it, is that you can pass in a folder where attachments will be saved. I build a...
Hey! I'm currently trying out this lib and came upon a scenario: If the user configures the `ImapServer` with port 993 (default IMAP over SSL port) port but forgets to...