Interface IEmailTemplateManager
-
@StableMinor(version="14.2", sinceVersion="11.2") public interface IEmailTemplateManager
Email template manager.- Since:
- 11.2.0
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEmailTemplate
get(String id)
Returns the email template with the given identifier.Collection<IEmailTemplate>
getByServiceInstance(String serviceInstanceId)
Returns the email templates of a given service instance.
-
-
-
Method Detail
-
get
IEmailTemplate get(String id) throws PortalException
Returns the email template with the given identifier.- Parameters:
id
- the email template identifier.- Returns:
- the email template with the given identifier.
- Throws:
PortalObjectNotFoundException
- if no email template with the given id was found.PortalException
- if some error occur.- Since:
- 11.2.0
-
getByServiceInstance
Collection<IEmailTemplate> getByServiceInstance(String serviceInstanceId) throws PortalException
Returns the email templates of a given service instance.- Parameters:
serviceInstanceId
- the identifier of the service instance.- Returns:
- the email templates of a given service instance.
- Throws:
PortalException
- if some error occur.- Since:
- 11.2.0
-
-