I'm a noob in action mailer, so it might be obvious, but i'm stuck with a simple issue.
A user can create an object, and he has followers that I want to alert when he creates this object.
On the object controller i have this:
if @project.save
format.html { redirect_to(@project, :notice => 'Project was successfully created.') }
format.xml { render :xml => @project, :status => :created, :location => @project }
# Send a notification to project owner's followers :
UserMailer.new_project(@project).deliver
else
...
Now in my user_mailer.rb, i have this:
def new_project(project)
@url = "http://localhost:3000/"
@project = project
# For each of project owner's follower, send an email notification
@followers = project.owner.followers.all
@followers.each do |f|
@u = User.find(f.follower)
mail( :to => @u.email,
:from => '"Beatrix Kiddo" <beatrix@example.com>',
:subject => "#{project.owner.name} created a new project")
end
end
Testing with a user that has 2 followers:
User.find(1).followers.count = 2
Follower.follower is the id of the user who's following
Only 1 email is sent to the 1st follower, the 2nd doesn't receive anything - what am i doing wrong ??
[SOLVED] => the .deliver method simply doesn't support multiple messages. Thx DR