标签: ruby-on-rails actionmailer
我正在使用ActionMailer,我当前的功能如下:
def send_profile_reminder() User.all do |user| if user.setup_profile == false ReminderMailer.send_reminder(user).deliver end end end
这是最有效的答案吗?
答案 0 :(得分:1)
ActionMailer擅长发送单个电子邮件,但在为大型用户发送时会导致问题。 一些服务,如Sendgrid Mailchimp 可以帮助您向大量用户发送批量电子邮件。