パッケージ org.iplass.mtp.mail

クラス HtmlMessage

java.lang.Object
org.iplass.mtp.mail.HtmlMessage

public class HtmlMessage extends Object
htmlメールを送信する場合の本文を表します。
  • コンストラクタの詳細

    • HtmlMessage

      public HtmlMessage()
    • HtmlMessage

      public HtmlMessage(String content, String charset)
  • メソッドの詳細

    • getContent

      public String getContent()
    • setContent

      public void setContent(String content)
      html本文をセットします。
      パラメータ:
      content -
    • getCharset

      public String getCharset()
    • setCharset

      public void setCharset(String charset)
      htmlのcharsetをセットします。
      パラメータ:
      charset -
    • addInlineContent

      public void addInlineContent(String cid, BinaryReference bin)
      htmlへの埋め込み画像を追加します。
      パラメータ:
      cid - html内に埋め込む際のContent-ID
      bin - 埋め込むデータを指し示すBinaryReference
    • addInlineContent

      public void addInlineContent(String cid, jakarta.activation.DataHandler dataHandler)
      htmlへの埋め込み画像を追加します。
      パラメータ:
      cid - html内に埋め込む際のContent-ID
      dataHandler - 埋め込むデータを指し示すDataHandler
    • getInlineContents

      public List<InlineContent> getInlineContents()
    • setInlineContents

      public void setInlineContents(List<InlineContent> inlineContents)