Package lumis.portal.sendmail
Interface IMultipleMail
-
- All Superinterfaces:
IBaseMail
,IMailSendStatus
@StableMinor(version="14.2", sinceVersion="4.0") public interface IMultipleMail extends IBaseMail
Stores the information about a multiple mail to be sent. This mail is sent once for each destination defined in it.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
- See Also:
IBaseMail
,IMultipleMail
,ISendMailManager.createMultipleMail()
,getDestinations()
-
-
Field Summary
-
Fields inherited from interface lumis.portal.sendmail.IBaseMail
MAIL_TYPE_MULTIPLE, MAIL_TYPE_SINGLE
-
Fields inherited from interface lumis.portal.sendmail.IMailSendStatus
STATUS_SEND_PENDING, STATUS_SENDING, STATUS_SENT_ERROR, STATUS_SENT_OK
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<IMailDestination>
getDestinations()
Returns a collection of destinations for this mail.-
Methods inherited from interface lumis.portal.sendmail.IBaseMail
getBody, getCharset, getFrom, getId, getMailLoggingString, getMailType, getReplyTo, getRequestDateTime, getSourceComponent, getSourceComponentStringsUrl, getSubject, setCharset, setFrom, setReplyTo, setSourceComponent, setSourceComponentStringsUrl, setSubject
-
Methods inherited from interface lumis.portal.sendmail.IMailSendStatus
getErrorMessage, getSentDateTime, getStatus, setErrorMessage, setSentDateTime, setStatus
-
-
-
-
Method Detail
-
getDestinations
Collection<IMailDestination> getDestinations()
Returns a collection of destinations for this mail. This collection may be manipulated by obtaining it using this method, and then using the collection api.- Returns:
- the collection of destinations for this mail.
- Since:
- 4.0.4
- See Also:
ISendMailManager.createMailDestination()
-
-