Author Topic: Hi Dean...I need some code.  (Read 6913 times)

paulzaiter

  • Posts: 25
    • View Profile
Hi Dean...I need some code.
« 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

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Hi Dean...I need some code.
« Reply #1 on: May 15, 2004, 12:44:50 am »
Paul,

Quote
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:

Code: [Select]
<script>window.location='http://site.com/page.html';</script>
Quote
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.

Code: [Select]
<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>
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

paulzaiter

  • Posts: 25
    • View Profile
Hi Dean...I need some code.
« Reply #2 on: May 15, 2004, 05:59:43 am »
Thanks very very much Dean....they look like the ones you gave me before.

Paul