Browse Source

Fix path name

pull/1615/head
Kat 3 years ago
parent
commit
3efb43c799
  1. 4
      app/mailers/bulk_upload_mailer.rb

4
app/mailers/bulk_upload_mailer.rb

@ -30,9 +30,9 @@ class BulkUploadMailer < NotifyMailer
title = "Check your file data" title = "Check your file data"
description = "Some of your #{bulk_upload.year_combo} #{bulk_upload.log_type} data might not be right. Click the link below to review the potential errors, and check your file to see if the data is correct." description = "Some of your #{bulk_upload.year_combo} #{bulk_upload.log_type} data might not be right. Click the link below to review the potential errors, and check your file to see if the data is correct."
cta_link = if bulk_upload.lettings? cta_link = if bulk_upload.lettings?
bulk_upload_lettings_check_soft_validations_url(bulk_upload, page: "soft-errors-valid") bulk_upload_lettings_soft_validations_check_url(bulk_upload, page: "soft-errors-valid")
else else
bulk_upload_sales_check_soft_validations_url(bulk_upload, page: "soft-errors-valid") bulk_upload_sales_soft_validations_check_url(bulk_upload, page: "soft-errors-valid")
end end
send_email( send_email(

Loading…
Cancel
Save