标签说明:订阅窗口输出
输出格式:
{%get name=invite class=参数...%}
...
{%/get%}
变量标签:
字段名 | 说明 |
$link | 订阅表单提交地址 |
$read.字段 |
订阅分类读取字段 |
参数说明:
参数 | 是否必填 | 说明 | 备注 |
mlvid | 必填 | 所属订阅分类ID |
请在网站后台,“营销” 〉 “邮件订阅管理”中查看相应的订阅分类ID |
实例一:调用订阅分类ID为1的订阅表单
{%get name=invite class=mlvid:1%}
<form name="inviteform" method="post" action="{%$link%}">
<input type="hidden" name="mlvid" value="{%$read.mlvid%}">
<input type="hidden" name="lng" value="{%$read.lng%}">
<table class="formlist2">
<tr>
<td class="right">订阅邮件地址</td>
<td><input id="email" name="email" type="text" class="infoInput" size="20"/></td>
</tr>
<tr>
<td></td>
<td><input name="submitsearch" type="submit" class="buttonface" value="确认订阅" /></td>
</tr>
</table>
</form>
{%/get%}