#------------------------------------------------------#
# INFO                                                 #
#------------------------------------------------------#
# Title: E-Mail Notification                           #
# Author: Brian Groce (http://briangroce.com)          #
# Date: July 30, 2004                                  #
# Version: 1.5                                         #
#                                                      #
# Note: This was created for and tested in             #
#       Word Press v 1.2                               #
#------------------------------------------------------#


=================================================
                 TO SET IT UP
-------------------------------------------------
1. Create the wp_email_list table in your Word Press
   MySQL database.

   If your wp table prefix is something other than
   "wp_" you need to update this table to match it.

   [Use sql/wp_email_list.sql]

-------------------------------------------------
2. Create a directory on your website for the
   e-mail notification subscription form.

   In our example we are going to use:
   http://yoursite.com/maillist/

-------------------------------------------------
3. Edit the configuration settings in maillist/index.php

-------------------------------------------------
4. Copy maillist/index.php to your server

-------------------------------------------------
5. If you want to use nice URLs, upload the
   .htaccess file to your maillist directory.

   If your subscribe directory is not called
   maillist, edit the .htaccess file to reflect
   this.

-------------------------------------------------
6. Edit the configuration settings in
   /wordpress/wp-content/plugins/email-notification-v1.5.php

  * If your subscribe directory is not called
    maillist, lines 133, 138, 166 & 171 will need to be
    changed to reflect this.

-------------------------------------------------
7.  Upload email-notification-v1.5.php to your server

-------------------------------------------------


=================================================
                 TO USE IT
-------------------------------------------------
1. Go to the Word Press administration area and
   activate the plugin.
-------------------------------------------------
2. Enter the code below in the page you want the
   subscription form to be on.

	<form method="post" action="http://yoursite.com/maillist/index.php">
	  <a id="notif"></a>
	  Enter your e-mail address to receive notifications when there are new posts<br /><br />
	  <input type="text" name="email" size="12" />
	  <input type="submit" name="submit" value="sign up" />
	</form>

	 Note: Update this as needed.
-------------------------------------------------