asp.net mail add ReplyTo(asp.net 邮件添加回复)
问题描述
如何在 ReplayTo 字段中添加与发件人不同的电子邮件?似乎 MailMessage.ReplyTo 已被弃用,所以我尝试使用 ReplyToList 代替.
How can i add a a different email then the sender in the ReplayTo field ?
Seems MailMessage.ReplyTo is deprecated so I'm trying to use ReplyToList instead.
但它告诉我
Property or indexer 'System.Net.Mail.MailMessage.ReplyToList' cannot be assigned to -- it is read only
到目前为止,这是我的代码:
Here is my code so far:
var reply = new MailAddressCollection();
reply.Add("test@test.com");
MailMessage mail = new MailMessage(senderEmail,usr.Email,"subject","message");
mail.ReplyToList = reply;
var smtp = new SmtpClient();
smtp.Send(mail);
推荐答案
你不能设置它为一个全新的MailAddressCollection,但是你可以直接添加到现有的MailAddressCollection,像这样:
You can't set it to a whole new MailAddressCollection, but you can add directly to the existing MailAddressCollection, like this:
MailMessage mail = new MailMessage(senderEmail,usr.Email,"subject","message");
mail.ReplyToList.Add("test@test.com");
var smtp = new SmtpClient();
smtp.Send(mail);
这篇关于asp.net 邮件添加回复的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:asp.net 邮件添加回复
基础教程推荐
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
