Sha256: 64266c0798e974bcc3a06aa4624985628cd2bd912f26c98815f3ff0ce17365b5
Contents?: true
Size: 317 Bytes
Versions: 21
Compression:
Stored size: 317 Bytes
Contents
## # Delivers the UserMailer.deliver_mimi_welcome to the requested User by +id+ # as an asynchronous process. # class DeliverWelcomeJob def initialize(user_id) @user_id = user_id end def perform if user = User.find_by_id(@user_id) HeadstartMailer.deliver_welcome(user) end end end
Version data entries
21 entries across 21 versions & 1 rubygems