= $this->title; ?>
= Yii::t('backend' , 'Test')?>
= $form->field($model, $model::SMTP_HOST)->textInput(); ?>
= $form->field($model, $model::SMTP_ENCRYPTION)->dropDownList($model->getSMTPEncryptionTypeList(),['class' =>'select2 form-control']); ?>
= $form->field($model, $model::SMTP_PORT)->textInput(); ?>
= $form->field($model, $model::SMTP_USERNAME)->textInput(); ?>
= $form->field($model, $model::SMTP_PASSWORD)->passwordInput(); ?>
= $form->field($model, $model::IS_SMTP_ENABLED)->radioList(array($model::ACTIVE=> Yii::t('backend', 'Yes'),$model::INACTIVE=> Yii::t('backend', 'No'))); ?>
= Html::submitButton(yii::t('backend','Save'), ['class' => 'btn btn-success']) ?>