How de we send out 5000 emails per hour using actionmailer in ruby on rails?
问题 I have some questions about ActionMailer : How does Actionmailer connect to a smtp server ? Are the connections concurrent or parallel if the number of emails high > 1000 ? How will sending out emails like facebook does ( 1000's in numbers ) as immediate emails affect the ruby on rails application and how would actionmailer handle it ? Any other solution/plugin to send out large number emails from a RoR application apart ActionMailer? ------------------------------------------------added : We