public void WhenNoAuthenticationIsProvidedThrowError()
        {
            var obj         = new EmailNotifier();
            var emailFormat = new EmailFormat("abc", "99999999", "*****@*****.**", "Illllkslk");

            Assert.Throws <SmtpException>(() => obj.SendCustomerInterestDetailsToMarketingTeam(emailFormat));
        }