Interface TinyMailListService
-
- All Implemented Interfaces:
public interface TinyMailListService- Since:
2023-01-07
trydofor
-
-
Method Summary
Modifier and Type Method Description abstract PageResult<TinyMailPlain>listAll(PageQuery pq)list summary of all messages, in reverse order by default. abstract PageResult<TinyMailPlain>listFailed(PageQuery pq)list summary of failed emails, in reverse order by default. abstract PageResult<TinyMailPlain>listUndone(PageQuery pq)list summary of unsuccessful emails, in reverse order by default. abstract PageResult<TinyMailPlain>listByBizMark(String mark, PageQuery pq)find summary of the email by Biz-Mark, in reverse order by default. abstract PageResult<TinyMailPlain>listByRecipient(String mailRegex, PageQuery pq)find summary of the email by RegExp of to/cc/bcc, reverse order by default. abstract PageResult<TinyMailPlain>listBySender(String mail, PageQuery pq)find summary of the email by from, in reverse order by default. abstract PageResult<TinyMailPlain>listBySubject(String subjRegex, PageQuery pq)find summary of the email by RegExp of subject, reverse order by default. abstract TinyMailPlainloadDetail(long id)get mail detail -
-
Method Detail
-
listAll
abstract PageResult<TinyMailPlain> listAll(PageQuery pq)
list summary of all messages, in reverse order by default.
-
listFailed
abstract PageResult<TinyMailPlain> listFailed(PageQuery pq)
list summary of failed emails, in reverse order by default.
-
listUndone
abstract PageResult<TinyMailPlain> listUndone(PageQuery pq)
list summary of unsuccessful emails, in reverse order by default.
-
listByBizMark
abstract PageResult<TinyMailPlain> listByBizMark(String mark, PageQuery pq)
find summary of the email by Biz-Mark, in reverse order by default.
-
listByRecipient
abstract PageResult<TinyMailPlain> listByRecipient(String mailRegex, PageQuery pq)
find summary of the email by RegExp of to/cc/bcc, reverse order by default.
-
listBySender
abstract PageResult<TinyMailPlain> listBySender(String mail, PageQuery pq)
find summary of the email by from, in reverse order by default.
-
listBySubject
abstract PageResult<TinyMailPlain> listBySubject(String subjRegex, PageQuery pq)
find summary of the email by RegExp of subject, reverse order by default.
-
loadDetail
abstract TinyMailPlain loadDetail(long id)
get mail detail
-
-
-
-