Hi
I have been using javax.mail package to send emails.
I used Transport.send method which throws a MessagingException
Now you see when we send more than 1000 mails, there is a validation at the server side or somewhere, which blocks our IP (if its not properly registered.... may be not a registered domain or something)
So, after 1000 mails or so, the
java program does send mails, but the mails never reach the recepient.
And we never come to know that emails are not going at our end in java program, as the Transport.send doesnt throw exception.
Can someone please guide me if it is technically possible to track such failures?