NAME
MT::App::NotifyList - Provide Movable Type email notification support
SYNOPSIS
use MT::App::NotifyList; $app->init(@args) $app->subscribe() $notification = $app->lookup($blog_id, $email); $app->confirm() $app->unsubscribe()
DESCRIPTION
An MT::App::NotifyList
object represents... TODO
METHODS
init
$app->init(@args)
This method is used to construct an MT::App::NotifyList
object. It passes any given arguments onto the SUPER::init
method and registers the methods defined in this package.
subscribe
$app->subscribe()
This method verifies and adds an email address to the list of notifications.
lookup
$notification = $app->lookup($blog_id, $email);
This method returns the notification object of the given blog that contains the given email. If no email is found in the blod, undef is returned.
confirm
$app->confirm()
This method confirms that an email address was added to the blog notification list and then redirects to that blog.
unsubscribe
$app->unsubscribe()
This method removes an email address from the notification.
AUTHOR & COPYRIGHT
Please see "AUTHOR & COPYRIGHT" in MT.