-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
67 lines (46 loc) · 2.47 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
JgMail - com.messners.mail
Author: Greg Messner <[email protected]>
Version: 2.1.0
JgMail is a Java class package which can be used to send and receive mail
to and from mail servers. It implements the POP3 protocol for retrieving mail
and the SMTP protocol to send mail. Support is provided for attaching files
when sending mail and for decoding attached files when receiving mail. JgMail
is simple to use. Sending and receiving mail can be accomplished in as little
as 4 lines of code.
Installing
----------
1) Unzip the JgMail archive (which you've probably already done if you
are reading this).
2) Add the jgmail.jar file to your CLASSPATH.
3) Run the samples that can be found in the build/samples/ directory. These will give
you a basic idea on how to use JgMail.
4) For more information on JgMail see the javadoc documentation that can
be found in the build/docs/ directory. All source is included and can be used as
an additional reference.
JgMail Release History
----------------------
3.0.1 07/24/09 Switched to SVN for source code control.
3.0.0 04/20/09 Modified to use Generic Collections.
Added JSP Taglib for sending email from JSP pages.
2.1.0 10/30/03 Added AUTH support to SMTP.
License is now LGPL.
Now uses Ant to build package.
2.0.0 03/06/02 Fixes to work with all versions of Java from 1.0 to 1.4.
Added transparent support for J2ME.
1.2.3 08/25/98 Fixed SMTP to handle multi-line responses from server.
SMTP now sends the senders host name with the HELO command.
SMTP now properly formats addresses for the RCPT command.
1.2.2 08/06/98 Added getMailer() and setMailer() methods to SMTP class.
Fixed problem reading folded message header fields.
1.2.1 08/05/98 Created Version class to hold JgMail version information.
Fixed problem when writing plain/text attachments.
Now works mixed case boundary specifiers.
1.2 07/30/98 SMTP now properly formats "Date" field in message header.
1.1 07/23/98 Fixed problems when reading multiple messages.
SMTP now properly formats attachments when sending.
Now saves attachments to configured directory.
Added functionality to aide in writing JavaBean wrappers.
1.0 06/18/98 First public release of JgMail
I would like to thank Alex Arsky and Eric Stenstrom for reporting and
investigating some of the above changes and fixes. I encourage all to
contact me with any questions and or problems.