I was just thinking about this yesterday when I noticed a client I was working with had lost his default HTML. I am going to implement a feature that will allow you to restore the default "Default HTML".
For the meantime, here are the pages:
Subscribe Confirm:
<html>
<head>
<title>Confirmation Page</title>
</head>
<body bgcolor=white>
!fname !lname,<br><br>
Before we add you to our database, we must verify your email address. Please check your email for the confirmation message and click the link provided to finalize your subscription.<br>
</body>
</html>
Subscribe Success:
<html>
<head>
<title>Welcome to the list!</title>
</head>
<body bgcolor=white>
Thanks for signing up, !fname.<br>
Your email address <u>!email</u> will be kept safe!<br><br>
You will receive an introductory email in a moment.<br>
</body>
</html>
Subscribe Error:
<html>
<head>
<title>Signup Error</title>
</head>
<body bgcolor=white>
There were errors with your subscription to our mailing list.<br><br>
The error messages are as follows:<br>
!data<br>
Please press the back button on your browser and re-enter your information.<br>
</body>
</html>
Remove Confirm:
<html>
<head>
<title>Remove Confirmation Page</title>
<style type=text/css rel=stylesheet> <!--
.confirm_button: { border: 1px solid #000000; font: 10pt arial; }
--> </style>
</head>
<body bgcolor=white>
!fname !lname,<br><br>
Your name was successfully retrieved from our database. We apologize if our mailings were an inconvenience to you and hope you are able to find what you were looking for in the near future. Please confirm that you would like your email address (!email) removed from our mailing list by clicking the button below.<br>
!button
</body>
</html>
Remove Success:
<html>
<head>
<title>Removal Success Page</title>
<body bgcolor=white>
!fname !lname,<br><br>
Your email address (!email) was successfully removed from our database. Be assured you will never receive any more email from this list server. We're sorry you decided to leave and wish you the best in the future!<br><br>
Management<br>
</body>
</html>
Remove Error:
<html>
<head>
<title>Remove Error</title>
</head>
<body bgcolor=white>
There were errors removing you from our mailing list(s):<br><br>!data
</body>
</html>
Regards!