I’m trying to configure Keycloak to send the reset password email using AWS Simple Email Service HTTP API because I can’t use SMTP. I’ve created an EmailSenderProviderFactory as
and registered it in
META-INF/service/org.keycloak.email.EmailSenderProviderFactory with the fully qualified class name.
When I deploy my jar to the standalone/deployments I can see that Keycloak detects it because I get a message in the log saying:
WARN [org.keycloak.services] (MSC service thread 1-6) KC-SERVICES0047: aws-ses-email-sender (com.example.AwsSesEmailSenderProviderFactory) is implementing the internal SPI emailSender. This SPI is internal and may change without notice
Can you give me some pointers on how to use my email sender instead of the Keycloak default one?
