I'm using the action mailer to send mails from my Ruby application. I set the smtp settings in the application.rb
it works fine. But I have to send lots of mails. some times about 150Mails in a minute.
My question is, does the action mailer establish every time the mail() function is used a new connection?
The Problem is that my Mail-Provider changes the PW of the account because too many mails were send. Is there any way to send the mail from different accounts? My idea is to set up about 20 mail accounts and during the sending process it should iterate through those is something like. is that possible?
Thanks