|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Address in com.funambol.mail |
---|
Methods in com.funambol.mail that return Address | |
---|---|
Address[] |
Message.getBcc()
Get the BCC addresses. |
Address[] |
Message.getCc()
Get the CC addresses. |
Address |
Message.getFrom()
Get the sender address. |
Address[] |
Message.getReplyTo()
Get the REPLY-TO addresses. |
Address[] |
Message.getTo()
Get the TO addresses. |
static Address[] |
Address.parse(int type,
java.lang.String addresslist)
Parses an address list and return an array of Address
objects, each representing a recipient. |
Methods in com.funambol.mail with parameters of type Address | |
---|---|
void |
Message.addRecipient(Address address)
Add the specified recipient to the correct header, based on the Address type (see com.funambol.mail.Address for the defined types). |
void |
Message.addRecipients(Address[] list)
Add the specified recipients to the correct header, based on the Address type. |
void |
Message.setBcc(Address[] bcclist)
Set the content of the RFC 2822 "Bcc:" (blind carbon copy) header with the provided addresses, passed as an Address array |
void |
Message.setCc(Address[] cclist)
Set the content of the RFC 2822 "Cc:" (carbon copy) header with the provided addresses, passed as an Address array |
void |
Message.setFrom(Address from)
This method sets the content of the RFC 2822 "From:" header with the given Address . |
void |
Message.setReplyTo(Address[] replytolist)
Set the content of the RFC 2822 "Bcc:" (blind carbon copy) header with the provided addresses, passed as an Address array |
void |
Message.setTo(Address[] tolist)
Set the content of the RFC 2822 "To:" header with the provided addresses, passed as an Address array |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |