Example #1
0
 public function actionIndex()
 {
     $model = new Mails();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('index', ['model' => $model]);
     }
 }