From 98973245bcb607ee3f7ea754c4e1dbfa8a89f54e Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Wed, 4 Feb 2015 13:01:25 -0500 Subject: [PATCH] Added ccself to all email forms, part 2 - search email handler. --- module/VuFind/src/VuFind/Controller/SearchController.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/module/VuFind/src/VuFind/Controller/SearchController.php b/module/VuFind/src/VuFind/Controller/SearchController.php index 255b1e6e71d..b229f15d765 100644 --- a/module/VuFind/src/VuFind/Controller/SearchController.php +++ b/module/VuFind/src/VuFind/Controller/SearchController.php @@ -117,6 +117,14 @@ class SearchController extends AbstractSearch $view->to, $view->from, $view->message, $view->url, $this->getViewRenderer() ); + if ($this->params()->fromPost('ccself') + && $view->from != $view->to + ) { + $this->getServiceLocator()->get('VuFind\Mailer')->sendLink( + $view->from, $view->from, $view->message, + $view->url, $this->getViewRenderer() + ); + } $this->flashMessenger()->setNamespace('info') ->addMessage('email_success'); return $this->redirect()->toUrl($view->url); -- GitLab