API for changing execute action subjectline
hi, Is it possible to have an api to change the subject of execute action emails send from keycloak,like
keycloak_admin.execute_actions.execute_action(user_id_keycloak, "VERIFY_EMAIL", subject="Verify Email")
This api will be so helpful.
Hi @althaf004
We already have methods for executing email actions, f.e. update account or verify email.
If you wish to customize the emails which are being sent, that has to be done on the Keycloak server side using the templates (see https://stackoverflow.com/questions/55349721/is-it-possible-to-change-the-email-content-in-keycloak and https://www.keycloak.org/docs/latest/server_development/#creating-a-theme). These customizations are not customizable via the API and therefore can't be supported with this library.
Is this answering your request?