### π Feature Description From: https://github.com/Avaiga/taipy/discussions/2707 Code like the following should open the email client: ```python import taipy.gui.builder as tgb from taipy.gui import Gui, navigate def mail_to(state): navigate(state, to="mailto:someone@example.com") with tgb.Page() as page: tgb.button("Click me", on_action=mail_to) Gui(page).run() ``` ### π Code of Conduct - [x] I have checked the [existing issues](https://github.com/Avaiga/taipy/issues?q=is%3Aissue+) to avoid duplicates. - [ ] I am willing to work on this issue (optional) ### β Acceptance Criteria - [ ] A working demo or example code (if applicable) is provided. - [ ] Integration tests demonstrate the new functionality. - [ ] Any new code is covered by unit tests. - [ ] Code coverage remains at least 90%. - [ ] Related documentation updates and release notes are created.