react-code-dataset / wp-calypso /client /lib /emails /has-paid-email-with-us.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { hasGSuiteWithUs } from 'calypso/lib/gsuite';
import { hasTitanMailWithUs } from 'calypso/lib/titan';
export function hasPaidEmailWithUs( domain ) {
return hasGSuiteWithUs( domain ) || hasTitanMailWithUs( domain );
}