Sha256: b0994ac4fd946568ca32a283238592bd29e96ad194f7ba7e2c8583bf9bb0b260

Contents?: true

Size: 502 Bytes

Versions: 1

Compression:

Stored size: 502 Bytes

Contents

class EcoRake
  module Utils
    module Mailing
      # @return [EcoRake::Mailer]
      def mailer
        @mailer ||= EcoRake::Utils::Mailer.new
      end

      # Helper to notify that there are no files to be processed
      def email_missing_files(enviro:, to:)
        mailer.mail(**{
          to:      to,
          subject: "#{enviro.upcase} (No files to be processed)",
          body:    'No files found to be processed. Aborting...'
        })
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eco-rake-0.1.1 lib/eco-rake/utils/mailing.rb