在ASP.NET中的SendGrid的“发件人”字段中添加名称

时间:2018-09-10 10:45:29

标签: c# .net sendgrid

当收到邮件时,在“发件人”中,我需要显示发送邮件的人的姓名。我认为我需要的是this答案

的C#版本

预先感谢

1 个答案:

答案 0 :(得分:2)

尝试看看MailMessage类。您在该页面上有一个示例。

MailAddress from = new MailAddress("ben@contoso.com", "Ben Miller");
MailAddress to = new MailAddress("jane@contoso.com", "Jane Clayton");
MailMessage message = new MailMessage(from, to);

message.Subject = "Using the SmtpClient class.";
message.Body = @"Using this feature, you can send an e-mail message from an application very easily.";
SmtpClient client = new SmtpClient();
client.Send(message);

请注意,没有参数的SmtpClient从app.config / web.config中获取配置。您可以查看mailSettings section了解更多配置信息