禁止以联系方式Drupal 7向发送者发送副本

问题描述 投票:0回答:1

我有一个静态网站,并使用drupal 7开发了联系表单。当用户输入电子邮件地址,姓名,主题和文本时,副本会自动发送给发件人。如何在代码端禁用此功能?我在drupal的管理端找不到此功能。

enter image description here

drupal drupal-7
1个回答
0
投票
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;
}
© www.soinside.com 2019 - 2024. All rights reserved.