Is it possible to address a mailmessage to a 'name' instead of an 'e-mailaddress'.
Something like this:
MailMessage mmsg = new MailMessage();
mmsg.To.Add("Winfrey");
instead of:
MailMessage mmsg = new MailMessage();
mmsg.To.Add(new MailAddress("Winfrey@user.com"));
Is it possible to add something in the 'To' part without the '@' and domain? And if so, how?