Hi, you need to bind a workItemHandler implementation to your knowledge session doing something like:
ksession.getWorkItemManager().registerWorkItemHandler("Email", <your email sender implementation WorkItemHandler>);
Then, when you run your process the workItemHandler registered will use the properties that you set in the designer to send the email.
Greetings.