以下代码在本地工作正常,但是当我将其发布到服务器时,我得到错误当前上下文中不存在名称“WebMail”。不确定为什么会发生这种情况,特别是如果它在本谢谢你的帮助。
public void SendMessage()
{
WebMail.SmtpServer = SmtpServer;
WebMail.UserName = ServerUsername;
WebMail.Password = ServerPassword;
WebMail.From = this.From;
var recipents = string.Join(",", this.To);
WebMail.Send(recipents, this.Subject, this.Body);
}
答案 0 :(得分:0)
谢谢。 VS 2012中的发布没有添加helper.dll。添加它,现在有效!感谢您的所有建议。