ziming / laravel-email-sniper-link
Laravel package to generate email sniper links based on given email
Fund package maintenance!
ziming
Installs: 5 960
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- illuminate/contracts: ^10.0|^11.0
- mobiledetect/mobiledetectlib: ^4.8
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- larastan/larastan: ^2.0.1
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8|^8.0
- orchestra/testbench: ^8.8|^9.0
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
README
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
Support us
You can make a donation or make a PR
Installation
You can install the package via composer:
composer require ziming/laravel-email-sniper-link
Usage
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('receiver@gmail.com', 'optional-from-email-that-proton-mail-uses@gmail.com') // 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('receiver@gmail.com', 'optional-from-email@gmail.com')
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);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.