I’m trying to use JavaMail 1.6 to send an email to a local MailHog SMTP server in Java 8. The code is: When the code is ran, it will start and establish a session with the server, and step through SMTP until it’s supposed to send data. After this, it sends QUITrn and hangs, not sending any content. MailHog logs:
Tag: smtp
How to Send bulk mails using javax.mail API efficiently? & Can we use reuse authenticated sessions to improve speed?
I am able to send a mail using javax.mail API. But the problem here is on an average for each mail it taking around 4.3 seconds to send to destination. If I am sending a 20 mails sequentially, it …