Interface OrderMailActionService
- All Known Implementing Classes:
OrderMailActionServiceImpl
public interface OrderMailActionService
-
Method Summary
Modifier and TypeMethodDescriptionboolean
checkSelection
(EntityExplorerActionSelection selection) Deprecated.void
sendEmail
(EntityExplorerActionSelection selection, String templateName, String reason) Deprecated.void
sendEmail
(EntityExplorerActionSelection selection, String templateName, String reason, String target) Deprecated.
-
Method Details
-
checkSelection
@Deprecated boolean checkSelection(EntityExplorerActionSelection selection) throws RpcExecutionException, PersistException Deprecated.checks if a mail should be sent based on the selection- Parameters:
selection
- selection to check- Throws:
RpcExecutionException
PersistException
-
sendEmail
@Deprecated void sendEmail(EntityExplorerActionSelection selection, String templateName, String reason) throws UnsupportedEncodingException, PersistException, jakarta.mail.internet.AddressException, MailException, RpcExecutionException Deprecated.calls sendEmail(EntityExplorerActionSelection selection, String templateName, String reason, String target) with empty string for target- Throws:
UnsupportedEncodingException
PersistException
jakarta.mail.internet.AddressException
MailException
RpcExecutionException
-
sendEmail
@Deprecated void sendEmail(EntityExplorerActionSelection selection, String templateName, String reason, String target) throws UnsupportedEncodingException, PersistException, jakarta.mail.internet.AddressException, MailException, RpcExecutionException Deprecated.send a mail with a specified template with a special attribute set- Parameters:
templateName
- template to sendreason
- attribute to be settarget
- attribute to be set- Throws:
UnsupportedEncodingException
PersistException
jakarta.mail.internet.AddressException
MailException
RpcExecutionException
-