我正在构建一个电子邮件服务到我的应用程序,有任何人使用Azure SDK在本地测试它的经验吗?或者只能在实际的天蓝色应用程序中使用?
答案 0 :(得分:0)
或者只能在实际的天蓝色应用程序中使用?
我们可以为本地和天蓝色应用程序使用SendGrid电子邮件服务。我们可以从Azure official tutorials获取更多详细信息。以下是我的测试演示代码
var apiKey ="ApiKey";//System.Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
var client = new SendGridClient(apiKey);
var msg = new SendGridMessage()
{
From = new EmailAddress("x@example.com", "Send Grid"),
Subject = "Hello World from the SendGrid CSharp SDK!",
PlainTextContent = "Hello, Email!",
HtmlContent = "<strong>Hello, Email!</strong>"
};
msg.AddTo(new EmailAddress("y@example.com", "Test User"));
client.SendEmailAsync(msg).Wait();