Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def startCompetitionPlaoff(competition)
  2. @competition = Competition.find(competition.id)
  3. @competition.users.each do |i|
  4. @user = User.find(i)
  5. mail( :to => @user.email, :subject => "Start Competition") do |format|
  6. format.html
  7. end
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement