Since the email template add-on for FlowUI has not yet been published, how can I send an email with the URL link to a DetailView of an entity in FlowUI?
You can use Java Mail API directly to send HTML content - there are plenty of examples on the internet.
Standard detail views have URLs like <host>/<entity>/<id>
, you can find the exact route in the @Route
annotation of the controller, for example:
@Route(value = "departments/:id", layout = MainView.class)
Flow UI for the email sending add-on will appear in release 2.0 in June 2023.
Hi Konstantin
Thanks for your suggestions. I have already set up JavaMail which works for sending emails. I’ll follow your suggestion in setting the URL as a link to the email recipients.