Anyway, I have been playing with Bloglet and considering using it for notifications instead of the MT Notifications screen. However I got to thinking about giving my users a choice.
My problem is that I would like one Area for subscriptions, where if someone checked a box that said "Daily Only" or somesuch the Email text box would subscribe them via bloglet (and the URL field dropped). Otherwise the URL and E-Mail text box would be passed to the MT notifications system for By article updates.
Here is the current code for both forms. I hope this is possible as it would solve a big Kludge dor subscriptions until MT comes out with a better notification system.
MT Notification Code
CODE
<form method="post" action="<$MTCGIPath$>mt-add-notify.cgi">
<input type="hidden" name="blog_id" value="<$MTBlogID$>" />
<input type="hidden" name="_redirect" value="<$MTBlogURL$>" />
<div style="font-weight:bold;">E-Mail:</div>
<input name="email" size="20" class="search" /><br />
<div style="font-weight:bold;">URL (optional):</div>
<input name="url" size="20" class="search" /><br />
<input type="submit" value="add" />
</form>
<input type="hidden" name="blog_id" value="<$MTBlogID$>" />
<input type="hidden" name="_redirect" value="<$MTBlogURL$>" />
<div style="font-weight:bold;">E-Mail:</div>
<input name="email" size="20" class="search" /><br />
<div style="font-weight:bold;">URL (optional):</div>
<input name="url" size="20" class="search" /><br />
<input type="submit" value="add" />
</form>
And Bloglet:
CODE
<form method="post" action="http://www.bloglet.com/subscribe.asp">
<input type="hidden" name="ID" value="XXXX" />
Subscribe to <b>Sea 'Doc'.net</b>!<br /><br />
<input type="text" name="email" value="" size="20" maxlength="100" />
<input type="submit" name="Submit" value="subscribe" /><br />
<a href="http://www.bloglet.com/">by Bloglet</a>
</form>
<input type="hidden" name="ID" value="XXXX" />
Subscribe to <b>Sea 'Doc'.net</b>!<br /><br />
<input type="text" name="email" value="" size="20" maxlength="100" />
<input type="submit" name="Submit" value="subscribe" /><br />
<a href="http://www.bloglet.com/">by Bloglet</a>
</form>