Package org.keycloak.email
Interface EmailSenderProvider
-
- All Superinterfaces:
Provider
- All Known Implementing Classes:
DefaultEmailSenderProvider
public interface EmailSenderProvider extends Provider
- Author:
- Stian Thorgersen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
send(Map<String,String> config, String address, String subject, String textBody, String htmlBody)
default void
send(Map<String,String> config, UserModel user, String subject, String textBody, String htmlBody)
-
-
-
Method Detail
-
send
default void send(Map<String,String> config, UserModel user, String subject, String textBody, String htmlBody) throws EmailException
- Throws:
EmailException
-
send
void send(Map<String,String> config, String address, String subject, String textBody, String htmlBody) throws EmailException
- Throws:
EmailException
-
-