From class
org.mule.module.gmail.BaseGmailConnector
|
List<MailMessage>
|
advancedSearch(String username, String password, GmailFolder folder, SearchTerm searchTerm, Boolean expunge, Boolean includeAttachments)
Search and returns messages on a folder of the given username
using a search criteria provided by the user via the searchTerm parameter.
|
|
void
|
delete(MailMessage mailMessage, String username, String password)
Moves the given message to the trash and deletes it from its current folder
|
|
abstract
Store
|
getStore(String username, String password)
|
|
List<MailMessage>
|
search(String username, GmailFolder folder, String password, String receivedBefore, String receivedAfter, String sentBefore, String sentAfter, List<String> fromAddresses, List<String> toAddresses, Integer messageNumber, SearchCriteria size, List<FlagCriteria> flags, List<String> labels, List<String> rawSearchTerms, String threadId, List<String> bodyTerms, List<String> headerTerms, String messageId, List<String> subjectTerms, String dateFormat, Boolean expunge, Boolean includeAttachments)
Returns messages in the user mailbox applying optional search criterias.
|
|