Отключить отправку копии отправителю в контактной форме Drupal 7 - PullRequest
0 голосов
/ 28 февраля 2020

У меня есть веб-сайт stati c с формой контакта, разработанной с использованием drupal 7. Когда пользователь вводит адрес электронной почты, имя, тему и текст, копия автоматически отправляется отправителю. Как отключить эту функцию на стороне кода? Я не смог найти эту функцию на стороне администратора в drupal.

enter image description here

1 Ответ

0 голосов
/ 09 марта 2020
By default there is one checkbox called 'Send yourself a copy' is on contact form which is by default unchecked. As i can see it is not visible in attached screenshot. Maybe it hidden because of captcha.

Or else we can alter form using hook_form_alter on .module file and add following code.
if ($form['#form_id'] == 'contact_site_form') {
$form['copy']['#access'] = FALSE;
}
...