Package org.compiere.util
Interface EmailSrv.ProvideBase64Data
-
- All Known Implementing Classes:
EmailSrv.EmailEmbedProvideBase64Data
- Enclosing class:
- EmailSrv
public static interface EmailSrv.ProvideBase64Data
when process an email content sometimes we wish embed image as base64 string to mail. source of image can go from many where. this interface for abstract source.- Author:
- hieplq
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBase64Data(String dataId)
javax.mail.BodyPart
getBodyPart(String dataId)
-
-
-
Method Detail
-
getBase64Data
String getBase64Data(String dataId) throws javax.mail.MessagingException, IOException
- Throws:
javax.mail.MessagingException
IOException
-
getBodyPart
javax.mail.BodyPart getBodyPart(String dataId) throws javax.mail.MessagingException, IOException
- Throws:
javax.mail.MessagingException
IOException
-
-