MailItempublic final class MailItem extends Object A simple structure containing the basic components of an email. |
Fields Summary |
---|
public String | senderThe sender's name. | public String | emailThe sender's email. | public String | subjectThe email subject line. | public String | bodyThe email's HTML body. | public boolean | readRead flag. |
Constructors Summary |
---|
public MailItem(String sender, String email, String subject, String body)
this.sender = sender;
this.email = email;
this.subject = subject;
this.body = body;
|
|