My Email Sending Code
MailMessage msg = new MailMessage("[email protected]", "[email protected]", "testing email", "to check from email label text");
SmtpClient smpt = new SmtpClient();
smpt.Send(msg);
When email open by [email protected] user, In the from email, its mentioned [email protected] where as I need to show like Abc Corporation [[email protected]]
How can I change from Email address label
Thanks