Interface ISentMailData

All Known Implementing Classes:
SentMailData

public interface ISentMailData
Information about a mail that was sent by IMailContext.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

    Modifier and Type
    Method
    Description
    Gets the final resolved BCC address of the mail which was sent.
    Gets the final resolved CC address of the mail which was sent.
    Gets the final resolved subject of the mail which was sent.
    Gets the final resolved TO address of the mail which was sent.
  • Method Details

    • 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.
    • getTo

      List<String> getTo()
      Gets the final resolved TO address of the mail which was sent.
      Returns:
      The mail's subject.