我正在寻找namecheap托管的邮件列表订阅表单的HTML代码。
这与其他提供商很容易,但是令我惊讶的是,我从字面上联系过的便宜的支持人员并没有任何线索。
这是我过去使用的:
<form action="/cgi-sys/ezmlm/mailinglist.pl" method="post">
<div>
<input type="hidden" name="domain" value="lists.example.com">
<input type="hidden" name="redirect" value="http://www.example.com/thankyou_subs.html">
<input type="hidden" name="redirect2" value="http://www.example.com/thankyou_subs_unsubs.html">
<input type="hidden" name="list" value="News">
Email:
<p>
<input type="text" name="to_sub" value="">
</p>
<table>
<tr>
<td>
subscribe
</td>
<td>
<input type="radio" name="mode" value="subscribe" checked>
</td>
</tr>
<tr>
<td>
unsubscribe
</td>
<td>
<input type="radio" name="mode" value="unsubscribe">
</td>
</tr>
</table>
<p><input class="button" type="submit" value="(un-)subscribe" /></p>
</div>
</form>
众所周知,这是琐碎的事情。名称便宜需要action
属性。
谢谢大家。