소스 검색

Added reply_to for failing checks email

Andrew Kane 8 년 전
부모
커밋
ae11042644
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/mailers/blazer/check_mailer.rb

+ 1 - 1
app/mailers/blazer/check_mailer.rb

@@ -15,7 +15,7 @@ module Blazer
 
     def failing_checks(email, checks)
       @checks = checks
-      mail to: email, subject: "#{pluralize(checks.size, "Check")} Failing"
+      mail to: email, reply_to: email, subject: "#{pluralize(checks.size, "Check")} Failing"
     end
   end
 end