Sha256: bb6dd2f10a74be65f62f9092ac15db8826ecff2a0d5208aeaeeb4d24fbb8f06c
Contents?: true
Size: 370 Bytes
Versions: 26
Compression:
Stored size: 370 Bytes
Contents
# frozen_string_literal: true module Spotlight ## # Notify the curator that we're finished processing a # batch upload class IndexingCompleteMailer < ActionMailer::Base def documents_indexed(csv_data, exhibit, user) @number = csv_data.length @exhibit = exhibit mail(to: user.email, subject: 'Document indexing complete') end end end
Version data entries
26 entries across 26 versions & 1 rubygems