VOL. I · NO. 1
PACKAGE v0.2.0
✦ TECHNOLOGY SPECIAL

The Internet Times

All the protocols that are fit to fix.

Open Source · JavaScript Library

Fix mailto: links once. Ship and done.

Zero-dependency library that intercepts broken mailto: links and shows a smart picker. Works in under 1ms with zero network requests.

npm · github.com/namandhakad712/smart-mailto · PACKAGE v0.2.0

The mailto: protocol was designed in 1997 for a world where every computer had a desktop email client. That world no longer exists. Today, 40% of users have no mail client configured, and corporate users are locked into webmail.

smart-mailto intercepts every mailto: link on your page and shows a beautiful modal with the user's preferred email provider. It detects region automatically using only browser APIs — no IP lookup, no cookies.

“One line of code. Every mailto: link on your site now works for everyone, everywhere.”

— README, @smart-mailto/core
Quick Start
Install
npm install @smart-mailto/core@0.2.0
Initialize
import { initSmartMailto } from '@smart-mailto/core';// One line. That’s it.initSmartMailto({ theme: 'dark', autoDetectGeo: true});
Live Demo

Try it yourself

Click the button below to see smart-mailto in action.

Live demo

Click to trigger smart-mailto

Send us an email
Reader Desk

Questions before you install

The short answers on setup, compatibility, fallback behavior, privacy, and what the library costs.

What is a mailto link, and what does smart-mailto change?

A mailto link is a normal web link that asks the browser to start an email. smart-mailto keeps that link intact, but intercepts the click and offers a webmail picker so visitors are not limited to a configured desktop mail app.

How do I add smart-mailto to a site?

Install @smart-mailto/core, import initSmartMailto, and call it once. Its single delegated click listener covers existing and future mailto links, so you do not have to rewrite each anchor.

Which browsers and frameworks does it support?

The core package uses modern browser APIs and works with plain JavaScript or TypeScript. Official packages are also available for React, Vue 3, and Svelte.

What happens when an email provider is not recognized?

The picker still shows common providers ranked for the visitor. A copy-address option is included by default, and mobile visitors can also use their native mail app when available.

How does geo-detection work?

Provider order is inferred from the browser time zone and language. There is no IP lookup, cookie, external request, or precise-location tracking.

How much does it add to my bundle?

The zero-dependency core stays under 8 KB gzipped. The modal UI is loaded separately on the first mailto click, so it does not inflate the initial core bundle.

Is smart-mailto free, and is there a paid plan?

Yes. The public packages and source code are free under the MIT License, including for commercial projects. The public project currently lists no paid plan, trial limit, or usage cap. View @smart-mailto/core on npm.

How do I disable or remove smart-mailto?

Call the cleanup function returned by initSmartMailto, or call destroySmartMailto directly. Remove the initialization and package when uninstalling; your original mailto links will return to normal browser behavior.

All supported providers

51 webmail entries: 31 compose links and 20 fallback pages.

Provider nameID
Gmail
gmail
Outlook
outlook-personal
Outlook 365
outlook-work
Yahoo Mail
yahoo
Proton Mail
protonmail
iCloud Mail
icloud
Fastmail
fastmail
Zoho Mail
zoho
Tuta Mail
tutanota
Яндекс Почта
yandex
Mail.ru
mailru
GMX Mail
gmx
WEB.DE
webde
Telekom Mail
t-online
Posteo
posteo
mailbox.org
mailboxorg
La Poste Mail
laposte
Yahoo!メール
yahoo-japan
네이버 메일
naver
카카오메일
daum
QQ邮箱
qq
网易163邮箱
mail163
Rediffmail
rediff
Seznam Email
seznam
Onet Poczta
onet
WP Poczta
wp
UKR.NET Mail
ukrnet
Libero Mail
libero
Mailfence
mailfence
Runbox
runbox
Disroot
disroot
Riseup
riseup
Rambler Mail
rambler
Alibaba Mail
aliyun
O2 Poczta
o2
docomo mail
docomo
au mail
au
SoftBank Mail
softbank
Interia Poczta
interia
SFR Mail
sfr
Free (Proxad)
free
Orange Mail
orange
Nate Mail
nate
BSNL Webmail
bsnl
Telia Mail
telia
Mynet Mail
mynet
Türk Telekom Mail
ttmail
Atlas.sk
atlas-sk
Sina Mail
sina
Indiatimes Mail
indiatimes
Spike Mail
spike

Geo-detection via Intl APIs · zero network requests · <1ms