|
![]() |
* If you need any help email me at admin@tvweather.com
* Feel free to make changes to the error messages as needed. ( You will find sample error messages in the source code for email and pagers )
* Here are the demo pages and code for Pagers and Email
1) First You need to add this code to the begining of your HTML body. (If you run into problems see your sample code)
<script LANGUAGE="JavaScript">
function SubscribeCheck() {
txt=document.Subscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their
pagers email address while subscribing
alrt1="The pager email address you entered --> ";
alrt12=" <-- seems wrong. This system"
+" will not accept pager telephone numbers, only pager email addreses. Please"
+" check the prefix and '@' sign. For example; 1234567@mobile.att.net"
+" If you don't know your pager's email address, see the bottom of "
+" the page for an example or contact your pager service provider for help.";
alrt2=" This pager's address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example; 1234567@mobile.att.net";
alrt3=" This pager's address you entered --> ";
alrt32=" <-- seems wrong. Do not include WWW. "
+" For example; 1234567@mobile.att.net";
alrt4="This pager's address you entered --> ";
alrt42=" <-- seems wrong. You do not need any dashes."
+" For example; 1234567@mobile.att.net";
// Code for finding out that the pagers email address has been
entered wrong while subscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
function UnsubscribeCheck() {
txt=document.UnSubscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their
pagers email address while unsubscribing
alrt1="The pager email address you entered --> ";
alrt12=" <-- seems wrong. This system"
+" will not accept pager telephone numbers, only pager email addreses. Please"
+" check the prefix and '@' sign. For example; 5554352@mobile.att.net"
+" If you don't know your pager's email address, see the bottom of "
+" the page for an example or contact your pager service provider for help.";
alrt2=" This pager's address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example; 5554352@mobile.att.net";
alrt3=" This pager's address you entered --> ";
alrt32=" <-- seems wrong. Do not include WWW. "
+" For example; 5554352@mobile.att.net";
alrt4="This pager's address you entered --> ";
alrt42=" <-- seems wrong. You do not need any dashes."
+" For example; 5554352@mobile.att.net";
// Code for finding out that the pagers email address has been
entered wrong while unsubscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
</script>
<!-- End of Java Script-->
2) Call the functions in your form...(If you run into problems see your sample code)
<!-- Below is the correct path to FormMail.dll on the
WeatherWarn server- do not change-->
<!-- Don't forget to call the function SubscribeCheck-->
<font color="#FFFFFF"><form
action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST" ONSUBMIT="return
SubscribeCheck()" name="Subscribe">
<input type="hidden" name="FromName"
value="SignupForm"><input type="hidden" name="MABody"
value="subscribe"><input type="hidden"
name="MailAddress" value="List"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="weather@WXYZ.com"><input type="hidden"
name="MailServer" value="mailrelay.maxinet.com"><input
type="hidden" name="MailSubject"
value="Subscribe"><input type="hidden"
name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signup_confirm.htm">
** Rember to call UnsubscribeCheck() on the unsubscribe form
<!-- Below is the correct path to FormMail.dll on the
WeatherWarn server- do not change-->
<!-- Don't forget to call the function UnsubscribeCheck-->
<form action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST"
ONSUBMIT="return UnsubscribeCheck()"
name="UnSubscribe">
<input type="hidden" name="FromName" value="Signoff
Form"><input type="hidden"
name="MABody" value="unsubscribe"><input type="hidden"
name="MailAddress" value="LIST"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="weather@WXYZ.com"><input type="hidden"
name="MailServer" value="mailrelay.maxinet.com"><input
type="hidden" name="MailSubject"
value="UnSubscribe"><input type="hidden"
name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signoff_confirm.htm">
============================================================================================================
Below is all of the source code for your Pagers
(ALL CHANGES MADE ARE IN BLUE)
============================================================================================================
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<title>WeatherWarn Pager & PCS Signup/Signoff</title>
</head>
<body>
<script LANGUAGE="JavaScript">
function SubscribeCheck() {
txt=document.Subscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their pagers email address while
subscribing
alrt1="The pager email address you entered --> ";
alrt12=" <-- seems wrong. This system"
+" will not accept pager telephone numbers, only pager email addreses. Please"
+" check the prefix and '@' sign. For example; 1234567@mobile.att.net"
+" If you don't know your pager's email address, see the bottom of "
+" the page for an example or contact your pager service provider for help.";
alrt2=" This pager's address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example; 1234567@mobile.att.net";
alrt3=" This pager's address you entered --> ";
alrt32=" <-- seems wrong. Do not include WWW. "
+" For example; 1234567@mobile.att.net";
alrt4="This pager's address you entered --> ";
alrt42=" <-- seems wrong. You do not need any dashes."
+" For example; 1234567@mobile.att.net";
// Code for finding out that the pagers email address has been entered wrong while
subscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
function UnsubscribeCheck() {
txt=document.UnSubscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their pagers email address while
unsubscribing
alrt1="The pager email address you entered --> ";
alrt12=" <-- seems wrong. This system"
+" will not accept pager telephone numbers, only pager email addreses. Please"
+" check the prefix and '@' sign. For example; 5554352@mobile.att.net"
+" If you don't know your pager's email address, see the bottom of "
+" the page for an example or contact your pager service provider for help.";
alrt2=" This pager's address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example; 5554352@mobile.att.net";
alrt3=" This pager's address you entered --> ";
alrt32=" <-- seems wrong. Do not include WWW. "
+" For example; 5554352@mobile.att.net";
alrt4="This pager's address you entered --> ";
alrt42=" <-- seems wrong. You do not need any dashes."
+" For example; 5554352@mobile.att.net";
// Code for finding out that the pagers email address has been entered wrong while
unsubscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
</script>
<!-- End of Java Script-->
<p align="center"><img src="http://www.WXYZ.com/lab.gif"
width="750" height="110"
alt="lab.gif (24083 bytes)"></p>
<div align="center"><center>
<table border="0" width="50%" cellspacing="0"
cellpadding="0">
<tr>
<td width="50%" align="center"><p
align="center"><img src="weather.gif"
alt="weather.gif (3718 bytes)" WIDTH="268"
HEIGHT="47"></td>
</tr>
<tr>
<td width="50%" align="center"><img
src="radar1.gif" alt="radar(1).gif (9457 bytes)"
WIDTH="75" HEIGHT="75"><img src="warn.gif"
alt="warn.gif (6001 bytes)" align="absmiddle"
WIDTH="210" HEIGHT="58"><small><font
color="#FF0000">™</font></small></td>
</tr>
</table>
</center></div>
<p align="center"><font face="Arial"
color="#FF0000"><strong><big><big>Email Control
Center for Iowa Weather
Bulletins</big></big></strong></font></p>
<table border="1" cellpadding="0" cellspacing="0"
width="100%">
<tr>
<td width="18%"><p align="center"><font
face="Arial" color="#FF0000"><strong><img
src="thumb_ia.gif" alt="thumb_il.gif (3953 bytes)"
WIDTH="108" HEIGHT="73"><br>
Iowa<br>
Weather<br>
Bulletins<br>
via<br>
</strong></font><img src="animemail.gif" alt="animemail.gif
(20048 bytes)"
align="absmiddle" WIDTH="50" HEIGHT="66"></td>
<td width="82%"><table border="1" cellpadding="0"
cellspacing="0" width="100%">
<tr>
<!-- Start of SUBSCRIBE FORM-->
<td width="100%" bgcolor="#800000"><font
face="Arial"
color="#FF0000"><big><strong><big>HOW
TO SUBSCRIBE:</big></strong> </big></font><ol>
<li><font face="Arial" color="#FFFFFF">Type your email
address below, check it for spelling
please!<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">Press the Subscribe
button <u>ONCE</u> ONLY<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">The confirmation
page will appear when your email has
been accepted.</font></li>
</ol>
<p><font face="Arial" color="#FFFFFF"> Your
email account will be <u><strong>subscribed</strong></u>
to the <strong>WXYZEmail-METRO</strong> WeatherWarn mailing
list.</font></p>
<blockquote>
<!-- Below is the correct path to FormMail.dll on the WeatherWarn server- do not
change-->
<!-- Don't forget to call the function SubscribeCheck-->
<font color="#FFFFFF"><form
action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST" ONSUBMIT="return SubscribeCheck()"
name="Subscribe">
<input type="hidden" name="FromName"
value="SignupForm"><input type="hidden" name="MABody"
value="subscribe"><input type="hidden"
name="MailAddress" value="List"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="weather@WXYZ.com"><input type="hidden"
name="MailServer" value="mailrelay.maxinet.com"><input
type="hidden" name="MailSubject"
value="Subscribe"><input type="hidden"
name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signup_confirm.htm"><!--
Remember to call the function SubscribeCheck above-->
<!-- Put the address of a your list email address above as Mailaddress1 for the list
name of the WeatherWarn list. Note there must be a "-request" in it!-->
<!-- Put the address of a 2nd email "monitoring account" above as
Mailaddress2 if you want to see all signups. Or remove the variable if you don't-->
<!-- You must leave email server address above as is we handle the form to email
output-->
<!-- Put the address of the email signoff confirmation page (Afterpage) on your own
server above!Note it must be an absolute web call, not a relative path -->
<p><input
type="text" size="30" name="FromAddress"><input
type="submit" name="Button"
value="Subscribe"> </p>
</form>
<p>Be <u>SURE</u> your email address is typed
correctly!</font></p>
</blockquote>
</td>
</tr>
<tr>
<!-- Start of UNSUBSCRIBE FORM-->
<td width="100%" bgcolor="#006600"><font
face="Arial"
color="#00FF00"><big><big><strong>HOW
TO UNSUBSCRIBE: </strong></big></big></font><ol>
<li><font face="Arial" color="#FFFFFF">Type your email
address below, check it for spelling
please! Also, it <strong>MUST</strong> be the <u>same exact address that
you used to
signup with</u>. For example: if you used the email address:<br>
</font><strong><font face="Arial"
color="#FF8000">myname@email.msn.com</font></strong><font
face="Arial" color="#FFFFFF"> to signup but you now type
in <br>
</font><strong><font face="Arial"
color="#FF8000">myname@msn.com</font></strong><font
face="Arial" color="#FFFFFF"> it <u>will not
work</u> because they aren't the same!<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">Press the
Unsubscribe button <u>ONCE</u> ONLY<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">The confirmation
page will appear when your email has
been accepted.</font></li>
</ol>
<p><font face="Arial" color="#FFFFFF"> Your
email account will be <u><strong>removed
from</strong></u> the <strong>WXYZEmail-METRO</strong> WeatherWarn
mailing list.</font></p>
<blockquote>
<!-- Below is the correct path to FormMail.dll on the WeatherWarn server- do not
change-->
<!-- Don't forget to call the function UnsubscribeCheck-->
<form action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST"
ONSUBMIT="return UnsubscribeCheck()" name="UnSubscribe">
<input type="hidden" name="FromName" value="Signoff
Form"><input type="hidden"
name="MABody" value="unsubscribe"><input type="hidden"
name="MailAddress" value="LIST"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="weather@WXYZ.com"><input type="hidden"
name="MailServer" value="mailrelay.maxinet.com"><input
type="hidden" name="MailSubject"
value="UnSubscribe"><input type="hidden"
name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signoff_confirm.htm"><!--
Remember to call the function UnsubscribeCheck above-->
<!-- Put the address of a your list email address above as Mailaddress1 for the list
name of the WeatherWarn list. Note there must be a "-request" in it!-->
<!-- Put the address of a 2nd email "monitoring account" above as
Mailaddress2 if you want to see all signups. Or remove the variable if you don't-->
<!-- You must leave email server address above as is we handle the form to email
output-->
<!-- Put the address of the email signoff confirmation page (Afterpage) on your own
server above!Note it must be an absolute web call, not a relative path -->
<p><input
type="text" size="30" name="FromAddress"><input
type="submit" name="Button"
value="Unsubscribe"> </p>
</form>
<font color="#FFFFFF"><p>Be <u>SURE</u> your email
address is typed correctly. If it is
not, you will not be removed from the list. Be sure to use the SAME ADDRESS as you signed
up with.</font></p>
</blockquote>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p>(C)1999 WXYZ-TV</p>
<p>Page last edited on:<!--webbot bot="Timestamp"
S-Type="EDITED" S-Format="%m/%d/%y" --></p>
</body>
</html>
============================================================================================================
Below is all of the source code for your Email
(ALL CHANGES MADE ARE IN BLUE)
============================================================================================================
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<title>WeatherWarn Email Signup/Signoff</title>
</head>
<body bgcolor="#FFFFFF">
<script LANGUAGE="JavaScript">
function SubscribeCheck() {
txt=document.Subscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their email address while
subscribing
alrt1="The email address you entered --> ";
alrt12=" <-- seems wrong. Please"
+" check the prefix and '@' sign. For example: johndoe@myprovider.com"
+"\n"
+"\n AOL users please note that you MUST include your full email
address, not just your AOL handle or nickname."
+"\n"
+"\n AOL Example: bob669@aol.com";
alrt2=" This email address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example: johndoe@myprovider.com"
+"\n"
+"\n AOL users please note that you MUST include your full email
address, not just your AOL handle or nickname."
+"\n"
+"\n AOL Example: bob669@aol.com";
alrt3=" This email address you entered --> ";
alrt32=" <-- seems wrong. Do not include a WWW. "
+" For example; johndoe@myprovider.com"
+"\n"
+"\n AOL users please note that you MUST include your full email address, not just
your AOL handle or nickname."
+"\n AOL Example: bob669@aol.com";
alrt4="This email address you entered --> ";
alrt42=" <-- seems wrong. You should not use dashes."
+" Correct example: johndoe@myprovider.com"
+"\n"
+"\n AOL users please note that you MUST include your full email address, not just
your AOL handle or nickname."
+"\n"
+"\n AOL Example: bob669@aol.com";
// Code for finding out that the email address has been entered wrong while subscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
function UnsubscribeCheck() {
txt=document.UnSubscribe.FromAddress.value;
flg=0;
// Alerts user that a mistake has been made upon entering their email address while
unsubscribing
alrt1="The email address you entered --> ";
alrt12=" <-- seems wrong. Please"
+" check the prefix and '@' sign. For example; johndoe@myprovider.com";
alrt2=" This email address you entered --> ";
alrt22=" <-- seems wrong. Please"
+" check the suffix for accuracy. (It should include a "
+".com,.net,.org,.gov or .mil) For example; johndoe@myprovider.com";
alrt3=" This email address you entered --> ";
alrt32=" <-- seems wrong. Do not include a WWW. "
+" For example; johndoe@myprovider.com"
alrt4="This email address you entered --> ";
alrt42=" <-- seems wrong. You should not use dashes."
+" Correct example; johndoe@myprovider.com";
// Code for finding out that the email address has been entered wrong while unsubscribing
if (txt.indexOf("@")<3){
alert(alrt1+txt+alrt12);
return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)){
alert(alrt2+txt+alrt22);
return false;
}
if (txt.indexOf("www.")) {
return true;
}
else
alert(alrt3+txt+alrt32);
return false;
if (txt.indexOf == "") {
return false;
}
else
return true;
}
</script>
<!-- End of Java Script-->
<p align="center"><img src="http://www.WXYZ.com/lab.gif"
width="750" height="110"
alt="lab.gif (24083 bytes)"></p>
<div align="center"><center>
<table border="0" width="50%" cellspacing="0"
cellpadding="0">
<tr>
<td width="50%" align="center"><p
align="center"><img src="weather.gif"
alt="weather.gif (3718 bytes)" WIDTH="268"
HEIGHT="47"></td>
</tr>
<tr>
<td width="50%" align="center"><img
src="radar1.gif" alt="radar(1).gif (9457 bytes)"
WIDTH="75" HEIGHT="75"><img src="warn.gif"
alt="warn.gif (6001 bytes)" align="absmiddle"
WIDTH="210" HEIGHT="58"><small><font
color="#FF0000">™</font></small></td>
</tr>
</table>
</center></div>
<p align="center"><font face="Arial"
color="#FF0000"><strong><big><big>Email Control
Center for Iowa Weather
Bulletins</big></big></strong></font></p>
<table border="1" cellpadding="0" cellspacing="0"
width="100%">
<tr>
<td width="18%"><p align="center"><font
face="Arial" color="#FF0000"><strong><img
src="thumb_ia.gif" alt="thumb_il.gif (3953 bytes)"
WIDTH="108" HEIGHT="73"><br>
Iowa<br>
Weather<br>
Bulletins<br>
via<br>
</strong></font><img src="animemail.gif" alt="animemail.gif
(20048 bytes)"
align="absmiddle" WIDTH="50" HEIGHT="66"></td>
<td width="82%"><table border="1" cellpadding="0"
cellspacing="0" width="100%">
<tr>
<!-- Start of SUBSCRIBE FORM-->
<td width="100%" bgcolor="#800000"><font
face="Arial"
color="#FF0000"><big><strong><big>HOW
TO SUBSCRIBE:</big></strong> </big></font><ol>
<li><font face="Arial" color="#FFFFFF">Type your email
address below, check it for spelling
please!<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">Press the Subscribe
button <u>ONCE</u> ONLY<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">The confirmation
page will appear when your email has
been accepted.</font></li>
</ol>
<p><font face="Arial" color="#FFFFFF"> Your
email account will be <u><strong>subscribed</strong></u>
to the <strong>WXYZEmail-METRO</strong> WeatherWarn mailing
list.</font></p>
<blockquote>
<!-- Below is the correct path to FormMail.dll on the WeatherWarn server- do not
change-->
<!-- Don't forget to call the function SubscribeCheck-->
<font color="#FFFFFF"><form
action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST" ONSUBMIT="return SubscribeCheck()"
name="Subscribe">
<input type="hidden" name="FromName"
value="SignupForm"><input type="hidden" name="MABody"
value="subscribe"><input type="hidden"
name="MailAddress" value="List"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="signupmonitoring@yourtvstation.com"><input
type="hidden" name="MailServer"
value="mailrelay.maxinet.com"><input type="hidden"
name="MailSubject" value="Subscribe"><input
type="hidden" name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signup_confirm.htm"><!--
Put the address of a your list email address above as Mailaddress1 for the list name of
the WeatherWarn list. Note there must be a "-request" in it!-->
<!-- Put the address of a 2nd email "monitoring account" above as
Mailaddress2 if you want to see all signups. Or remove the variable if you don't-->
<!-- You must leave email server address above as is we handle the form to email
output-->
<!-- Put the address of the email signoff confirmation page (Afterpage) on your own
server above!Note it must be an absolute web call, not a relative path -->
<p><input
type="text" size="30" name="FromAddress"><input
type="submit" name="Button"
value="Subscribe"> </p>
</form>
<p>Be <u>SURE</u> your email address is typed
correctly!</font></p>
</blockquote>
</td>
</tr>
<tr>
<!-- Start of UNSUBSCRIBE FORM-->
<td width="100%" bgcolor="#006600"><font
face="Arial"
color="#00FF00"><big><big><strong>HOW
TO UNSUBSCRIBE: </strong></big></big></font><ol>
<li><font face="Arial" color="#FFFFFF">Type your email
address below, check it for spelling
please! Also, it <strong>MUST</strong> be the <u>same exact address that
you used to
signup with</u>. For example: if you used the email address:<br>
</font><strong><font face="Arial"
color="#FF8000">myname@email.msn.com</font></strong><font
face="Arial" color="#FFFFFF"> to signup but you now type
in <br>
</font><strong><font face="Arial"
color="#FF8000">myname@msn.com</font></strong><font
face="Arial" color="#FFFFFF"> it <u>will not
work</u> because they aren't the same!<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">Press the
Unsubscribe button <u>ONCE</u> ONLY<br>
</font></li>
<li><font face="Arial" color="#FFFFFF">The confirmation
page will appear when your email has
been accepted.</font></li>
</ol>
<p><font face="Arial" color="#FFFFFF"> Your
email account will be <u><strong>removed
from</strong></u> the <strong>WXYZEmail-METRO</strong> WeatherWarn
mailing list.</font></p>
<blockquote>
<!-- Below is the correct path to FormMail.dll on the WeatherWarn server- do not
change-->
<!-- Don't forget to call the function UnsubscribeCheck-->
<form action="http://www.tvweather.com/cgi-bin/briformmail.dll"
method="POST"
ONSUBMIT="return UnsubscribeCheck()"
name="UnSubscribe">
<input type="hidden" name="FromName" value="Signoff
Form"><input type="hidden"
name="MABody" value="unsubscribe"><input type="hidden"
name="MailAddress" value="LIST"><input
type="hidden" name="MailAddress1"
value="WXYZemail-METRO-request@central.weatherwarn.net"><input
type="hidden" name="MailAddress2"
value="signupmonitoring@yourtvstation.com"><input
type="hidden" name="MailServer"
value="mailrelay.maxinet.com"><input type="hidden"
name="MailSubject" value="UnSubscribe"><input
type="hidden" name="Afterpage"
value="http://www.tvweather.com/wxwarnsignup/email_signoff_confirm.htm"><!--
Put the address of a your list email address above as Mailaddress1 for the list name of
the WeatherWarn list. Note there must be a "-request" in it!-->
<!-- Put the address of a 2nd email "monitoring account" above as
Mailaddress2 if you want to see all signups. Or remove the variable if you don't-->
<!-- You must leave email server address above as is we handle the form to email
output-->
<!-- Put the address of the email signoff confirmation page (Afterpage) on your own
server above!Note it must be an absolute web call, not a relative path -->
<p><input
type="text" size="30" name="FromAddress"><input
type="submit" name="Button"
value="Unsubscribe"> </p>
</form>
<font color="#FFFFFF"><p>Be <u>SURE</u> your email
address is typed correctly. If it is
not, you will not be removed from the list. Be sure to use the SAME ADDRESS as you signed
up with.</font></p>
</blockquote>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p>(C)1999 WXYZ-TV</p>
<p>Page last edited on:<!--webbot bot="Timestamp" startspan
S-Type="EDITED"
S-Format="%m/%d/%y" -->05/17/99<!--webbot bot="Timestamp"
i-checksum="14062" endspan --></p>
</body>
</html>