$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) {
return $this->refresh();
} else {
return $this->render('contact', [
'model' => $model,
]);
}