Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport the 'mailto' scheme #18049
Support the 'mailto' scheme #18049
Comments
|
I'm going to guess the main work here is finding out the default mail client for all platforms. At least on mac, I think that's via: Might be nice if there was a small crate that handled this across all platforms. e.g. something like: /// Given an application scheme, determine the path of the app for which it is registered to
fn scheme_app_lookup(scheme: &str) -> Option<Path> { .. } |
|
There's open. |
|
Can't that be handled directly by the embedder via Basically, in |
|
I made some progress on this by editing |
|
@deg4uss3r Please hold off your attempt; I agree with @paulrouget, this issue does not sound like it is servo's responsibility but rather the embedder's. |
If I click on a
mailtolink, it should take me to my email client. I don't know if there's a spec for this, but most browsers handle this.Example: click on https://rwell.org/ and click on 'email'