mirror of
https://github.com/retailcrm/transparent-email.git
synced 2024-12-01 17:56:03 +03:00
13 lines
231 B
PHP
13 lines
231 B
PHP
<?php
|
|
|
|
namespace bkrukowski\TransparentEmail\Services;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface ServiceInterface
|
|
{
|
|
public function isDomainSupported(string $domain) : bool;
|
|
|
|
public function getPrimaryEmail(string $email) : string;
|
|
} |