is biz mail php
0.3.0
isBizMail は、指定された電子メール アドレス (gmail.com、yahoo.es、yandex.ru など) が無料かどうかを示します。 isBizMailで使用される電子メールのリストは、ここ¹ から引用されています。約 2500 のドメインとサブドメインを検出します。
少額ですが私たちをサポートしていただけますので、このリポジトリにスターを付けて共有することをご検討ください。それは私たちのことを知ってもらい、コミュニティを成長させるのに役立ちます。
Composer 経由でisBizMail をインストールできます。
composer require salaros/is-biz-mail
または、 composer.json
ファイルに直接追加します。
{
"require" : {
"salaros/is-biz-mail" : " * "
}
}
次に、次のように使用します。
<?php
require ' path/to/vendor/autoload.php ' ;
use Salaros Email IsBizMail ;
( new IsBizMail ())-> isValid ( ' [email protected] ' ); // true
// You can use static access as well
IsBizMail:: isValid ( ' [email protected] ' ); // false
// ...
これを Yii2 モデルのルールに簡単にドロップできます。
public function rules () {
return [
// ...
[[ ' email ' ], ' isBusinessEmail ' ],
// ...
];
}
public function isBusinessEmail ( $ attributeName , $ params ) {
$ isBussiness = ( new IsBizMail ())-> isValid ( $ this -> email );
if (!isBussiness)
$ this -> addError ( $ attributeName , ' Mail boxes such as @gmail.com, @yahoo.com etc are not allowed! ' );
return $ isBussiness ;
}
composer install
composer test # or ./vendor/bin/phpunit