Smartrmail创建具有多个选项的新闻通讯注册

问题描述

我们在工作时事通讯中使用smartrmail,目前他们无法创建注册表单,客户可以在其中选择要添加到的邮件列表。 例如,我们希望客户能够选择他们要接收的电子邮件,即无线电控制,模型套件或模型铁路电子邮件

我希望表格如下所示, 电子邮件地址文本框

“选择要添加到的邮件列表”标签

复选框1:无线电遥控车。 复选框2:模型套件。 复选框3:铁路模型。 提交按钮。

现在,我只是想知道如何解决此问题,因为当前代码可用于注册一个邮件列表,并且表单操作会调用smartrmail创建的注册表单页面(我可以为3个邮件列表单选创建该页面)控制,模型套件和铁路模型。

我们用于注册的当前代码如下:

 <form accept-charset="UTF-8" action="https://go.smartrmail.com/en/subscribe/7iypic" method="post" id="subscribe-form">
                      <input name="subscribe_form[anti_bot]" type="text" style="display: none" />
                      <label for="subscriber_email">Email</label>
                      <input class="form-control" id="subscriber_email" name="EMAIL" type="email" required placeholder="Email Address" />
                    <div class="checkBox">
                        <label>
                            <input type="checkBox" value="y" class="terms_Box" required/>
                            I have read and agree to
                            <a href="#" data-toggle="modal" data-target="#termsModal">Terms & Conditions</a> and
                            <a href="#" data-toggle="modal" data-target="#privacyModal">Privacy Policy</a>.
                        </label>
                    </div>
                    <input name="commit" class="btn btn-default" type="submit" value="Subscribe" data-loading-text="<i class='fa fa-spinner fa-spin' style='font-size: 14px'></i>"/>
                </form>`enter code here`

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...