sergey-golovanov/email-verification

There is no license information available for the latest version (dev-master) of this package.

dev-master 2025-06-16 17:12 UTC

This package is auto-updated.

Last update: 2025-06-16 17:23:09 UTC


README

Проверяет корректность массива строк, в которых есть адреса электронной почты. Шаблон регулярного выражения может быть настроен под конкретную задачу.

Требования

  • PHP >= 7.4

Установка

composer require sergey-golovanov/email-verification

Использование

<?php

$template = new EMailTemplate();

$emv = new EmailVerification($template);

$arr = [
	string with e-mail,
	string with e-mail,
	string with e-mail,
	string with e-mail,
];

$arrCorrectEmail = $emv->verify($arr);