blob: efce9ed56e4bbdd30ad8019f742b6380e05787c3 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script>
function launchProtocol(url) {
const iframe = document.createElement('iframe');
iframe.src = url;
document.body.appendChild(iframe);
}
launchProtocol('mailto:[email protected]');
</script>
</body>
</html>