Is there any way I can have users sign up for my mailman list without having them redirected to the mailman list page?
A simple form on my site at the top right corner of every page works fine. It is simple and elegant.
<FORM Method=POST ACTION="http://xxxxxxx/mailman/subscribe/xxxxxxxx">
email:<INPUT type="Text" name="email" size="30" value=""><br />
<INPUT type="Submit" name="email-button" value="Subscribe"><br />
</FORM>
But, it takes a potential customer away from my ecommerce site. A horrible tragedy!!
Yes, I suppose I could tweak the subscription results page in settings thusly:
<html>
<head>
<title>Subscription Results</title>
<meta http-equiv="refresh"
content="1;url=http://www.example.com/mypage.html">
</head>
<body></body>
</html> <<thanks tigertech.net for that idea
...to redirect them back to my site. But that still would not keep them on the page they were at when they clicked the subscribe button.
I need a click to subcscribe, then "Thanks!" in the same spot on my site without leaving the page they are currently on. (The sign up form will be on all pages of the site.) Then they'll get the confirmation email.
Any ideas greatly appreciated.