Sending Email - Custom

You may define your own email sender that would be tasked to submit emails, etc using the following bean definition and by implementing EmailSender:

1
2
3
4
@Bean
public EmailSender emailSender() {
    return new MyEmailSender();   
}

See this guide to learn more about how to register configurations into the CAS runtime.