class EcoRake module Utils module Mailing # @return [EcoRake::Mailer] def mailer @mailer ||= EcoRake::Utils::Mailer.new end def email(subject:, body:, to:, enviro: nil) has_enviro = enviro && subject && subject.downcase.include?(enviro.downcase) subject = "#{enviro.upcase} - #{subject}" if enviro && !has_enviro mailer.mail(**{ to: to, subject: subject, body: body }) end # Helper to notify that there are no files to be processed def email_missing_files(enviro:, to:) email(**{ to: to, subject: "#{enviro.upcase} (No files to be processed)", body: 'No files found to be processed. Aborting...' }) end end end end