This package helps you generate a sniper link for your email. Which makes it a lot easier for people to find your email.
For a quick explainer on what is an email sniper link, you can check out this link below.
https://growth.design/sniper-link
A common use case is for your verify email page.
This package currently generate email sniper links for
- Google Mail
- Outlook
- Yahoo Mail
- Proton Mail
- iCloud Mail
You can make a donation or make a PR
You can install the package via composer:
composer require ziming/laravel-email-sniper-link
use Ziming\LaravelEmailSniperLink\LaravelEmailSniperLink;
// This just do a quick guess based on the ending email address such as gmail.com, outlook.com, icloud.com etc.
LaravelEmailSniperLink::getSniperLinkQuick('[email protected]', '[email protected]')
// This will do a more accurate guess by not only checking the ending email address but also the MX record of the email address
// if the email address domain is not 1 of the common ones.
// Which is more useful for business emails. But it does make network calls to fetch the MX records, so it is a little slower
LaravelEmailSniperLink::getSniperLink('[email protected]', '[email protected]')
The LaravelEmailSniperLink
class has more static methods as well which might be useful for you.
Some helper functions are also available. For now there are 2.
// This just do a quick guess based on the ending email address such as gmail.com, outlook.com, icloud.com etc.
email_sniper_link_quick(string $receiverEmail, ?string $fromEmail = null);
// This will do a more accurate guess by not only checking the ending email address but also the MX record of the email address
// if the email address domain is not 1 of the common ones.
// Which is more useful for business emails. But it does make network calls to fetch the MX records, so it is a little slower
email_sniper_link(string $receiverEmail, ?string $fromEmail = null);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.