我正在尝试使用 AppHarbor 和 MailGun 插件向我的用户发送一封简单的电子邮件。我还安装了 MailGun NuGet 包,以便从我的 C# 代码更轻松地发送电子邮件。
我收到以下错误:
System.InvalidOperationException: Domain not found
这是我正在运行的代码:
/* Send welcome email. */
var client = new MailgunClient("foo.apphb.com", "key-1-jpn-190fj8102i3nf12i3fno213f");
client.SendMail(new System.Net.Mail.MailMessage("welcome@foo.apphb.com", "sergiotapia@outlook.com")
{
Subject = "Hello from mailgun",
Body = "this is a test message from mailgun."
});
任何想法为什么会弹出此错误消息?