1
2
3
4
5
6
fn main() {
    robius_open::Uri::new("mailto:test@example.com")
        .action("ACTION_MAIL")
        .open()
        .unwrap();
}