Cant send more than 15 emails with Rails 4 and Amazon SES -


i don't know why because i'm getting no errors, i'm trying send 71 emails , server stop send them @ 15th. tried delayed_job (which works when manually tell rake jobs:work way 15 emails sent.

i don't know do. massive code built controller structure like:

user.all.select{ |u| u.projects.size == 0 }.each |user|     servicesmailer.askforprojects(user).deliver  end 

when user delayed_jobs gem line within each statement like:

servicesmailer.delayed.askforprojects(user) 

and mail controller like:

def askforprojects(user)     @user = user     @subject = 'sometext'     @message = "message".html_safe     email_with_name = "#{@user.name} <#{@user.email}>"     mail(to: email_with_name, subject: @subject) end 

i don't know anymore, help?

when first start using ses, have sandbox access - cannot use sending emails have not first verified. in addition, have limits on volume of email can send.

i guess 15 sort of internal limit. log warnings or messages you're getting , there explanation problem in message.


Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -