initial commit
[namibia] / module / Workspace / src / Workspace / Controller / UnsubscribeController.php
1 <?php
2 namespace Workspace\Controller;
3
4
5
6 class UnsubscribeController extends \Zend\Mvc\Controller\AbstractActionController
7 {
8
9         public function newsletterAction()
10         {
11                 header("Location: http://" . $_SERVER['HTTP_HOST'] . "/#/unsubscribe-newsletter");
12                 exit();
13         }
14
15 }