summaryrefslogtreecommitdiff
path: root/app/mailers/emails/work_items.rb
blob: fe669fdbedc07ea5c4fabc160e6a4b2172443784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Emails
  module WorkItems
    def import_work_items_csv_email(user_id, project_id, results)
      @user = User.find(user_id)
      @project = Project.find(project_id)
      @results = results

      email_with_layout(
        to: @user.notification_email_for(@project),
        subject: subject('Imported work items'))
    end
  end
end