配置Tecite PHP Formmail脚本

配置Tecite PHP Formmail脚本,php,html,formmail,Php,Html,Formmail,我正在尝试在联系人表单上使用tecite Formmail脚本。我阅读了他们关于设置它的文档(formmail.php文件)。但在设置表单数据接收者的电子邮件地址时感到困惑。例如,我希望将表单数据获取到“admin@zahedkamal.com". 有人能告诉我怎么设置吗?我不擅长PHP,所以不能正确理解他们的脚本 这是我的表格代码 <form id="contact_us" action="formmail.php" method="post"> <inpu

我正在尝试在联系人表单上使用tecite Formmail脚本。我阅读了他们关于设置它的文档(formmail.php文件)。但在设置表单数据接收者的电子邮件地址时感到困惑。例如,我希望将表单数据获取到“admin@zahedkamal.com". 有人能告诉我怎么设置吗?我不擅长PHP,所以不能正确理解他们的脚本

这是我的表格代码

<form id="contact_us" action="formmail.php" method="post">

        <input type="hidden" name="recipients" value="admin@zahedkamal.com" />

        <input type="hidden" name="subject" value="Form Submission" />

            <div class="form-group">
                <span class="auto-style31">full name </span>
                <input name="Text1" type="text" />
            </div>

            <div class="form-group">
                <span class="auto-style31">email </span>
                <input name="Text2" data-validation="email" type="text" />
            </div>
            <div class="form-group">
                <span class="auto-style31">volunteer </span>
                <input name="Checkbox1[]" type="checkbox" />

                <span class="auto-style31">stallholder </span>
                <input name="Checkbox1[]" type="checkbox"  />

                <span class="auto-style31">sponsorship </span>
                <input name="Checkbox1[]" type="checkbox" />

                <span class="auto-style31">membership </span>
                <input name="Checkbox1[]" type="checkbox"  />
            </div>

            <div class="form-group">
                <span class="auto-style26">other</span>

                <textarea name="TextArea1" cols="20" rows="1"></textarea>

            </div>

            <input type="reset" value="reset" /><span class="auto-style31">
            </span>
            <input class="auto-style31" name="Submit1" style="width: 70px" type="submit" value="submit" />
</form>

全名
电子邮件
志愿者
摊主
赞助
会员
其他

刚刚看到这一点,所以我正在回答,尽管可能已经太晚了

获取Tecite FormMail支持的最佳方式是通过我们的联系电子邮件地址向我们发送电子邮件

FormMail中的$TARGET_电子邮件设置应为:

$TARGET_EMAIL = array('^admin@zahedkamal\.com$');
希望有帮助