我的电子邮件发送代码
MailMessage msg = new MailMessage("mailer@abc.com", "xyz@hotmail.com", "testing email", "to check from email label text");
SmtpClient smpt = new SmtpClient();
smpt.Send(msg);
当 xyz@hotmail.com 用户打开电子邮件时,在发件人电子邮件中,它提到了 mailer@abc.com,因为我需要显示为Abc Corporation [abc@nextech.pk]
如何从电子邮件地址标签更改
谢谢