sendgrid邮件新c#客户端坏了吗?

时间:2014-05-22 07:30:14

标签: c# sendgrid

我理解这一突破性变化:

  

使用新的SendGridMessage()而不是SendGrid.GetInstance()

但是,在执行以下操作时:

var transportWeb = Web.GetInstance(credentials);

我被告知GetInstance不存在?

发生了什么?我错过了什么吗?

1 个答案:

答案 0 :(得分:3)

抱歉,在更新的文档中错过了这个。您还需要使用Web类型的构造函数而不是旧的工厂方法。

// Create an Web transport for sending email.
var transportWeb = new Web(credentials);

readme现在也已修复。感谢。