I use a e-newletter service (
www.ymlp.com
) to manage a large (15k+) mailing list. They provide the simple form below to copy and paste into my HTML website. I currently have this working by placing it in a wrapper module, but that seems messy -- nor could I ever place it on the side menu (which is what I'm trying to get at).
How can I make this into a module? Of course creating a module, editting HTML and pasting this in doesn't work (as all the form elements are stripped out)-- but that's my question. Would Facile Forms be the way to go (but that seems like over kill)?
<form method=post action=http://www.ymlp.com/subscribe.php?myaccount>
<table border=0>
<tr>
<td colspan=2>Fill out your e-mail address <br> to receive our newsletter!</td>
</tr>
<tr>
<td><input type="text" name="YMLP0" size="20"></td>
<td><input type="submit" value="Submit"></td>
</tr>
<tr>
<td colspan=2>
<input type="radio" name="action" value="subscribe" checked> Subscribe<input type="radio" name="action" value="unsubscribe"> Unsubscribe</td>
</tr>
</table>
</form>