We are intended to develop a service, which always stay connected to email server, so that whenever a user triggers a mail, it will sent by using the connect instead of getting a new connection and sending the mail. Is is possible that we always stay connection to email server using JAVA Mail API??. kindly help me in this.
|
feedback
|
|
When you connect to SMTP server (also when using However, many SMTP servers are pretty evil and will kill the connection if you are using it "too slow" or if you try to resuse your SMTP session to often. (I looked up postfix settings for you.) The Java Mail API allows you to create the connection and close it whenever you want to. Smth. like this:
However, because of the fact how the SMTP servers are, you can't just execute | |||||||
feedback
|