FormIt Problem - two questions

Hi friends, i have problem about FormIt.

1- When a visitor sends a message, it doesn’t show that the message was sent. But from extras i can view all submitted forms.

2- For submitted messages, how i can get from my e-mail. I want to specify a different email for each language page.

For #1, the usual method is to set the redirectTo property in the FormIt tag to the ID of a page containing a message telling the user that the email has been sent.

For #1, there are various methods. One is to create a TV containing the email address for each page, and use a TV tag for that TV in the FormIt tag.

&hooks=`email`
&emailTo=`[[*TvName]]`

In Modal

  1. Code
&validate=`phone-zv:required, name:required, email:required, `

If i write like this code, i get message “you sent successfully message”, but related message not go Extras or Gmail.

2.Code

&validate=`phone-zv:required`

if i write code like this, i dont see this message “you sent successfully message”. Form cant close after message, but message come in “extras”

Full Code

<div id="modal_form" class="modal-adaptive">
    <a class="exit"></a>
[[!AjaxForm?
  &snippet=`FormIt`
  &hooks=`FormItSaveForm,email`
  &emailFrom=`oguztek09@gmail.com`
  &form=`tpl.AjaxForm`
  &emailTpl=`modal-zv-tpl`
  &emailTo=`oguztek09@gmail.com`
  &emailSubject=`Новое сообщение с сайта`
  &validate=`phone-zv:required, name:required, email:required, `
  &validationErrorMessage=`В форме содержатся ошибки!`
  &successMessage=`<h2>Сообщение успешно отправлено</h2>`
  ]]
[[!+fi.successMessage]]
</div>
<div id="overlay"></div>