diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/request_controller.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index 424f0444d..61b68a2db 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -168,7 +168,7 @@ class ApiController < ApplicationController mail.parts << attachment end else - mail = RequestMailer.create_external_response(request, body, sent_at, attachment_hashes) + mail = RequestMailer.external_response(request, body, sent_at, attachment_hashes) end request.receive(mail, mail.encoded, true) end diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index daf290675..7895e05d5 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -878,7 +878,7 @@ class RequestController < ApplicationController mail.parts << attachment end else - mail = RequestMailer.create_fake_response(@info_request, @user, body, file_name, file_content) + mail = RequestMailer.fake_response(@info_request, @user, body, file_name, file_content) end @info_request.receive(mail, mail.encoded, true) flash[:notice] = _("Thank you for responding to this FOI request! Your response has been published below, and a link to your response has been emailed to ") + CGI.escapeHTML(@info_request.user.name) + "." |