Interface IEmailTemplateManager
-
@StableMinor(version="14.0", sinceVersion="11.2") public interface IEmailTemplateManager
Email template manager.- Since:
- 11.2.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
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
-
-