Class TinyMailListServiceImpl
-
- All Implemented Interfaces:
-
org.springframework.beans.factory.InitializingBean,pro.fessional.wings.tiny.mail.service.TinyMailListService
@Service()@ConditionalWingsEnabled() public class TinyMailListServiceImpl implements TinyMailListService, InitializingBean
- Since:
2023-01-13
trydofor
-
-
Constructor Summary
Constructors Constructor Description TinyMailListServiceImpl()
-
Method Summary
Modifier and Type Method Description PageResult<TinyMailPlain>listAll(PageQuery pq)list summary of all messages, in reverse order by default. PageResult<TinyMailPlain>listFailed(PageQuery pq)list summary of failed emails, in reverse order by default. PageResult<TinyMailPlain>listUndone(PageQuery pq)list summary of unsuccessful emails, in reverse order by default. PageResult<TinyMailPlain>listByBizMark(String mark, PageQuery pq)find summary of the email by Biz-Mark, in reverse order by default. PageResult<TinyMailPlain>listByRecipient(String mailRegex, PageQuery pq)find summary of the email by RegExp of to/cc/bcc, reverse order by default. PageResult<TinyMailPlain>listBySender(String mail, PageQuery pq)find summary of the email by from, in reverse order by default. PageResult<TinyMailPlain>listBySubject(String subjRegex, PageQuery pq)find summary of the email by RegExp of subject, reverse order by default. TinyMailPlainloadDetail(long id)get mail detail voidafterPropertiesSet()voidsetWinMailSenderDao(WinMailSenderDao winMailSenderDao)-
-
Method Detail
-
listAll
PageResult<TinyMailPlain> listAll(PageQuery pq)
list summary of all messages, in reverse order by default.
-
listFailed
PageResult<TinyMailPlain> listFailed(PageQuery pq)
list summary of failed emails, in reverse order by default.
-
listUndone
PageResult<TinyMailPlain> listUndone(PageQuery pq)
list summary of unsuccessful emails, in reverse order by default.
-
listByBizMark
PageResult<TinyMailPlain> listByBizMark(String mark, PageQuery pq)
find summary of the email by Biz-Mark, in reverse order by default.
-
listByRecipient
PageResult<TinyMailPlain> listByRecipient(String mailRegex, PageQuery pq)
find summary of the email by RegExp of to/cc/bcc, reverse order by default.
-
listBySender
PageResult<TinyMailPlain> listBySender(String mail, PageQuery pq)
find summary of the email by from, in reverse order by default.
-
listBySubject
PageResult<TinyMailPlain> listBySubject(String subjRegex, PageQuery pq)
find summary of the email by RegExp of subject, reverse order by default.
-
loadDetail
TinyMailPlain loadDetail(long id)
get mail detail
-
afterPropertiesSet
void afterPropertiesSet()
-
setWinMailSenderDao
@Autowired() void setWinMailSenderDao(WinMailSenderDao winMailSenderDao)
-
-
-
-