Skip to content
Advertisement

connection pooling with smtp servers

like i have 5 smtp server’s and i want to do bulk mailing and want to post on each server then how i can achieve it ? I am using like this now :

JavaScript

Now i want to post on multiple VIP’s like

JavaScript

Can you suggest how i can achieve this ?

Advertisement

Answer

You can use SmtpConnectionPool.

Create session with properties for different servers e.g.

JavaScript

Create SmtpConnectionPool say per IP, at the start of application

JavaScript

You can then perisit the pools per IP in a Map

JavaScript

While sending the mail you can grab a pool from Map and then borrow a connection from the pool and send your mail.

JavaScript

You should also consider to have some queue sort mechanism in place as sending bulk email should be a background job.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement