• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/contact.php
  • Класс: BitrixSenderContactTable
  • Вызов: ContactTable::checkEmail
static function checkEmail(?string $value)
{
	if(empty($value) || check_email($value))
	{
		return true;
	}
	else
	{
		return Loc::getMessage('SENDER_ENTITY_CONTACT_VALID_EMAIL');
	}
}