1 | <?php |
||
16 | class MailController extends Controller |
||
17 | { |
||
18 | /** |
||
19 | * Lists all AuditMail models. |
||
20 | * @return mixed |
||
21 | */ |
||
22 | 2 | public function actionIndex() |
|
32 | |||
33 | /** |
||
34 | * Displays a single AuditMail model. |
||
35 | * @param integer $id |
||
36 | * @return mixed |
||
37 | * @throws NotFoundHttpException |
||
38 | */ |
||
39 | 1 | public function actionView($id) |
|
49 | |||
50 | /** |
||
51 | * Displays a single AuditMail model's HTML. |
||
52 | * @param integer $id |
||
53 | * @return mixed |
||
54 | * @throws NotFoundHttpException |
||
55 | */ |
||
56 | public function actionViewHtml($id) |
||
67 | |||
68 | /** |
||
69 | * Download an AuditMail file as eml. |
||
70 | * @param $id |
||
71 | * @throws NotFoundHttpException |
||
72 | */ |
||
73 | 3 | public function actionDownload($id) |
|
81 | } |
||
82 |