ListMailPRO Email Marketing Software Forums
ListMailPRO Email Marketing Software Forums => Customization, Integration => Topic started by: paulzaiter on May 14, 2004, 08:01:42 pm
-
Hi Dean
After losing information in Listmail, I wanted to knbow if you could give me some code that you gave me before.
I need the code that:-
1) when people get the "SIGN UP ERROR MESSAGE", I need the code that automatically directs them to another web page.
2) I need the code that when people use the "SIGN UP FORM", automatically directs them to another webpage.
Thanks very much Dean
-
Paul,
1) when people get the "SIGN UP ERROR MESSAGE", I need the code that automatically directs them to another web page.
Do I recall correctly that is this when a duplicate user signs up to your list?
In the "duplicate email address" error message, replace the default text with the following:
<script>window.location='http://site.com/page.html';</script>
2) I need the code that when people use the "SIGN UP FORM", automatically directs them to another webpage.
The following code in your Custom HTML "Subscribe Success" page will redirect the user after 2 seconds to the page of your choice.
<html>
<head>
<meta http-equiv="refresh" content="2; URL=http://site.com/page.html">
</head>
<body>
Click <a href="http://site.com/page.html">here</a> if you are not redirected in 2 seconds.
</body>
</html>
-
Thanks very very much Dean....they look like the ones you gave me before.
Paul