GitXplorerGitXplorer
t

webmail-linker

public
55 stars
13 forks
2 issues

Commits

List of commits on branch master.
Unverified
d98882b84ae4720ffce85aa04510c114d49a6e09

Updated URLs after checkup with URL checker

tthomasbachem committed 9 years ago
Unverified
76c626126b198fa69385b04a6b2d9ef9d7285d74

Fixed missing line break in URL checker output

tthomasbachem committed 9 years ago
Unverified
2bba6f7c9c29a2e37e7de8202d628876b51545a4

Fixed SSL handling in URL checker

tthomasbachem committed 9 years ago
Unverified
9f5b298a416caaace1936f54f3ab46f134be9b31

Merge pull request #10 from donbobka/feature/add-ya-ru

tthomasbachem committed 9 years ago
Unverified
e5e3d8a1059d4a674852f3c337b3ad12e1ac7142

Add ya.ru, .kz and .by domain for yandex

ddonbobka committed 10 years ago
Unverified
7e2bad05fa57660adc39209bf5cec17449fe7495

Merge pull request #9 from pascalhofmann/patch-1

tthomasbachem committed 10 years ago

README

The README file for this repository.

Webmail Linker

Collection of Email Providers' Webmail Sites

About

Many websites require an email double opt-in during user registration. This project wants to fix the resulting break in user flow when users have to manually switch to their email providers' website to receive the confirmation email.

With Webmail Linker, you can offer a direct link to the user's webmail interface. In addition to the webmail URL, you'll get the name of the email provider and a favicon URL, so you can offer a button like "Check your email on [name and icon of the provider]".

The list contains 250+ email providers so far.

Languages

The core of this project, the list of email providers, is maintained in JSON. The provided wrapper classes to query the list are very simple – feel free to add libraries for other languages via pull requests.

Usage example (PHP):

$wl = new WebmailLinker();

if($provider = $wl->getProviderByEmailAddress('user@example.com')) {
  $html = '<a href="https://raw.githubusercontent.com/thomasbachem/webmail-linker/master/%s">Check your email at %s</a>';
  printf($html, htmlspecialchars($provider['url']), htmlspecialchars($provider['name']));
}

Contributing

Let's make Webmail Linker the most comprehensive compilation of email providers out there!

You can fork this repository and create pull requests for providers.json. You do not even have to check out the repository – GitHub's web editing capabilities make contributing even simpler.