瀏覽代碼

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