Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有内置登录控件等的股票 Asp.net 会员资格。问题是通过注册发送的确认电子邮件的正文为空白。它应该有一个链接,用户单击以确认他们的电子邮件并注册。除了空白正文外,电子邮件确实发送并交付正常。有人知道我在做什么错吗?TIA
您是否将消息的内容分配给消息正文?
message.Body = "亲爱的订阅者,...";
确保您的代码包括:
message.IsBodyHtml = true;