I use an email action program to send emails from my Ruby application. I set smtp options in application.rb
It works great. But I have to send a lot of letters. some times about 150mails in a minute.
My question is, does the action mailer install every time the mail () function uses a new connection?
The problem is that my mail provider changes the PW account because too many emails were sent. Is there a way to send mail from different accounts? My idea is to set up about 20 email accounts, and in the process of sending it should iterate through something like that. perhaps?
thank
source
share