Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/89.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/perl/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html i使用formsubmit.co url发布_Html_Forms_Form Submit - Fatal编程技术网

Html i使用formsubmit.co url发布

Html i使用formsubmit.co url发布,html,forms,form-submit,Html,Forms,Form Submit,我正在使用formsubmit发送电子邮件。我的问题是,当我提交表单时,google recaptcha页面将以url打开,就像我想将此url更改为我的网站url一样。有可能吗 下面是我的表格 <form class="app_form_wrapper" action="https://formsubmit.co/myemail@gmail.com" method="POST" > <div c

我正在使用formsubmit发送电子邮件。我的问题是,当我提交表单时,google recaptcha页面将以url打开,就像我想将此url更改为我的网站url一样。有可能吗

下面是我的表格

<form class="app_form_wrapper" action="https://formsubmit.co/myemail@gmail.com" method="POST" >
            <div class="col-lg-6 text-left">
                <div class="form-group apps-pulldown-20">
                    <div class="apps_input">
                        <input type="text" class="form-control" name="name" placeholder="Name"required>
                    </div>
                </div>
                <div class="form-group apps-pulldown-20">
                    <div class="apps_input">
                        <input type="email" class="form-control" name="email" placeholder="Email"required>
                    </div>
                </div>
                <div class="form-group apps-pulldown-20">
                    <div class="apps_input">
                        <input type="tel" class="form-control" name="phone" placeholder="Phone Number" minlength="10" maxlength="15"required>
                    </div>
                </div>
            </div>
            <div class="col-lg-6">
                 <div class="form-group apps-pulldown-20">
                    <div class="apps_input">
                        <input type="text" class="form-control" name="company" placeholder="Company"required>
                    </div>
                </div>
                <div class="form-group apps-pulldown-20">
                    <div class="apps_input">
                        <textarea rows="10" class="form-control" name="message" placeholder="Message"required></textarea>
                    </div>
                </div>
            </div>
            <input type="hidden" name="_url" value="http://localhost/app/contact">
            <input type="hidden" name="_next" value="http://localhost/app/mailSent.html">
            <input type="text" name="_honey" style="display:none">
            <input type="hidden" name="_template" value="table">
            <div class="col-lg-12">
                <p>
                    This site is protected by reCAPTCHA and the Google
                    <a href="https://policies.google.com/privacy">Privacy Policy</a> and
                    <a href="https://policies.google.com/terms">Terms of Service</a> apply.
                </p>
                <button type="submit" class="btn btn-default btn-lg contact_btn">Send</button>
            </div>
    </form>


本网站受reCAPTCHA和Google的保护
和
申请。

发送
谢谢
Harshith

FormSubmit为您提供了两种不同的选项,您可以跳过ReCaptcha页面(不推荐,但提供了该页面),也可以用随机字符串替换您的裸电子邮件地址

选项1

您可以使用以下隐藏输入字段跳过验证码页面:

<input type="hidden" name="_captcha" value="false">

选项2

获取一个随机的类似字符串,以替换 窗体的操作属性。您的电子邮件地址将保持未知状态 向机器人和人类访问者发送垃圾邮件

此随机字符串将在您确认电子邮件时发送给您 地址

另请参阅其官方文件: