replaced webgui mail system

This commit is contained in:
JT Smith 2006-01-31 20:20:09 +00:00
parent 53c5de1903
commit 3816ad750f
12 changed files with 288 additions and 152 deletions

View file

@ -10,7 +10,10 @@
- Added output chunking as an option for asset www_ methods. The net effect
of this provides a fairly significant performance increase to what would
otherwise be slow or complex pages. More details in migration.txt.
- The SMTP mail backend has been replaced with a new API that's capable of
sending attachments, HTML messages, and more. This will introduce many new
options for developers.
- The group mail screen now allows sending of HTML messages.
6.8.6
- Added logic to deal with case sensitivity and whitespace problems in LDAP

View file

@ -29,6 +29,11 @@ save you many hours of grief.
have completed by running the search.pl script in the
sbin folder.
* The following perl modules are now required:
MIME::Tools
6.8.4
--------------------------------------------------------------------

View file

@ -874,6 +874,14 @@ WebGUI::International::getLanguages();
$i18n->getLanguages();
5.24 WebGUI::Mail Replaced
The aging WebGUI::Mail package has been replaced with WebGUI::Mail::Send,
which has an object oriented API, and is capable of sending attachments, HTML
messages, and to multiple recipients, unlike WebGUI::Mail. Please see the API
for details.
6. Automatic list of Assets in Help System.
-------------------------------------

View file

@ -256,6 +256,7 @@ sub removeFiles {
unlink '../../lib/WebGUI/URL.pm';
unlink '../../lib/WebGUI/Id.pm';
unlink '../../lib/WebGUI/Icon.pm';
unlink '../../lib/WebGUI/Mail.pm';
unlink '../../lib/WebGUI/Style.pm';
unlink '../../lib/WebGUI/Setting.pm';
unlink '../../lib/WebGUI/Grouping.pm';