Hi,
I need to validate email
I need to match only my company domain mails
If it not matches my company mail I don't want to send mail
ex:
mahesh.reddy@tcs.com //send mail
mahesh.reddy@infosys.com //don't send mail
All mails should match only one domain name (tcs.com)
public void CheckMailFomat()
{
string s = "abc.def@abc.com";
}
Could you please help me