]> sipb.mit.edu Git - ikiwiki.git/blob - doc/tips/mailman_subscription_form.mdwn
ikiwiki (3.20140916) unstable; urgency=low
[ikiwiki.git] / doc / tips / mailman_subscription_form.mdwn
1 One can think about implementing "[[Mailman integration]]" or something, but I find that rather overdoing it. Mailman is simple enough that you can add a clean subscription form to your ikiwiki site in seconds, just add:
2
3 ~~~~
4 <form action="https://listes.example.com/cgi-bin/mailman/subscribe/listname" method="POST">
5 Email: <input name="email" />
6 <input type="submit" value="Subscribe" />
7 </form>
8 ~~~~
9
10 To your site and voilĂ , you are done! No more scary mailman subscription form! (Thanks to [[bgm]] for that trick!) --[[anarcat]]