How de we send out 5000 emails per hour using actionmailer in ruby on rails?

后端 未结 4 1107
悲哀的现实
悲哀的现实 2020-12-09 23:47

I have some questions about ActionMailer :

  1. How does Actionmailer connect to a smtp server ?

  2. Are the connections c

4条回答
  •  暖寄归人
    2020-12-10 00:01

    1. You define the SMTP settings in a config file if left blank it uses sendMail local

    2. concurrent

    3. multiple handlers

    4. Is there a bulk email plugin for Rails apps?

    you may also do 1000.times do email.deliver but it will probably collapse ur server

提交回复
热议问题