Package de.xima.fc.mail.interfaces
Interface ISentMailData
- 
- All Known Implementing Classes:
 SentMailData
public interface ISentMailDataInformation about a mail that was sent byIMailContext.send(IBaseMailData, Mandant). The mails that were actually sent may differ from the mails that were requests. This always contains the data about the actual mails that were sent.- Since:
 - 8.0.4
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>getBcc()Gets the final resolved BCC address of the mail which was sent.List<String>getCc()Gets the final resolved CC address of the mail which was sent.StringgetSubject()Gets the final resolved subject of the mail which was sent.List<String>getTo()Gets the final resolved TO address of the mail which was sent. 
 - 
 
- 
- 
Method Detail
- 
getBcc
List<String> getBcc()
Gets the final resolved BCC address of the mail which was sent.- Returns:
 - The mail's subject.
 
 
- 
getCc
List<String> getCc()
Gets the final resolved CC address of the mail which was sent.- Returns:
 - The mail's subject.
 
 
- 
getSubject
String getSubject()
Gets the final resolved subject of the mail which was sent.- Returns:
 - The mail's subject.
 
 
 - 
 
 -