首页
/ Twilio SendGrid C .NET 库技术文档

Twilio SendGrid C .NET 库技术文档

2024-12-28 09:06:24作者:段琳惟

1. 安装指南

准备条件

  • .NET Framework 4.0+
  • .NET Core 1.0+
  • .NET Standard 1.3+
  • Twilio SendGrid 账户,免费注册可在前30天内发送最多40,000封邮件,之后每天可免费发送100封邮件或查看我们的定价

获取 API Key

Twilio SendGrid UI 获取您的 API Key。

设置环境变量以管理 API Key

通过环境变量或 Web.config 来管理您的 Twilio SendGrid API Key,这是一个好习惯,可以将数据配置设置与代码分离。这样,您可以在不更改代码的情况下更改 Twilio SendGrid API Key。

使用 UI 设置环境变量:

  1. 按下 Win+R 并运行 SystemPropertiesAdvanced
  2. 点击环境变量
  3. 在用户变量部分点击新建
  4. 在名称中输入 SENDGRID_API_KEY(确保名称与代码中的键名称匹配)
  5. 在值中输入实际的 API Key
  6. 重启 IDE,完成设置

使用 CMD 设置环境变量:

  1. 以管理员身份运行 CMD
  2. 运行 set SENDGRID_API_KEY="YOUR_API_KEY"

以下是一些以编程方式获取和设置 API Key 的示例:

// 获取环境变量
var apiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");

// 设置环境变量
var setKey = Environment.SetEnvironmentVariable("SENDGRID_API_KEY", "YOUR_API_KEY");

安装包

要在您的 C# 项目中使用 Twilio SendGrid,您可以直接从我们的 GitHub 仓库 下载 Twilio SendGrid C# .NET 库,或者如果您已安装 NuGet 包管理器,可以自动获取:

dotnet add package SendGrid

# 使用 HttpClientFactory 和 Microsoft.Extensions.DependencyInjection
dotnet add package SendGrid.Extensions.DependencyInjection

安装完 Twilio SendGrid 库后,您可以在代码中调用它。有关示例实现,请参阅 .NET Core 示例.NET 4.5.2 示例 文件夹。

依赖项

请查看 .csproj 文件 中的依赖项。

2. 项目使用说明

快速入门

以下是最小代码示例,用于发送简单邮件。请使用此示例,并修改 apiKeyfromto 变量:

using System;
using System.Threading.Tasks;
using SendGrid;
using SendGrid.Helpers.Mail;

class Program
{
    static async Task Main()
    {
        var apiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
        var client = new SendGridClient(apiKey);
        var from = new EmailAddress("test@example.com", "Example User");
        var subject = "Sending with Twilio SendGrid is Fun";
        var to = new EmailAddress("test@example.com", "Example User");
        var plainTextContent = "and easy to do anywhere, even with C#";
        var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
        var msg = MailHelper.CreateSingleEmail(from, to, subject, plainTextContent, htmlContent);
        var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
    }
}

执行上述代码后,response.StatusCode 应该为 202,并且您应该在 to 收件人的收件箱中收到一封邮件。您可以在 UI 中查看邮件状态。或者,我们可以将事件发布到您选择的 URL,使用我们的 事件 Webhook。这将为您提供 Twilio SendGrid 处理邮件时的有关事件数据。

对于更高级的情况,您可以自己构建 SendGridMessage 对象,至少需要以下设置:

using System;
using System.Threading.Tasks;
using SendGrid;
using SendGrid.Helpers.Mail;

class Program
{
    static async Task Main()
    {
        var apiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
        var client = new SendGridClient(apiKey);
        var msg = new SendGridMessage()
        {
            From = new EmailAddress("test@example.com", "DX Team"),
            Subject = "Sending with Twilio SendGrid is Fun",
            PlainTextContent = "and easy to do anywhere, even with C#",
            HtmlContent = "<strong>and easy to do anywhere, even with C#</strong>"
        };
        msg.AddTo(new EmailAddress("test@example.com", "Test User"));
        var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
    }
}

您可以在此处找到所有邮件功能的示例。

通用 v3 Web API 使用

using System;
using System.Threading.Tasks;
using SendGrid;

class Program
{
    static async Task Main()
    {
        var apiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
        var client = new SendGridClient(apiKey);
        var queryParams = @"{'limit': 100}";
        var response = await client.RequestAsync(method: SendGridClient.Method.GET, urlPath: "suppression/bounces", queryParams: queryParams).ConfigureAwait(false);
    }
}

HttpClientFactory + Microsoft.Extensions.DependencyInjection

需要安装 SendGrid.Extensions.DependencyInjection

using System;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using SendGrid;
using SendGrid.Extensions.DependencyInjection;
using SendGrid.Helpers.Mail;

class Program
{
    static async Task Main()
    {
        var services = ConfigureServices(new ServiceCollection()).BuildServiceProvider();
        var client = services.GetRequiredService<ISendGridClient>();
        var msg = new SendGridMessage()
        {
            From = new EmailAddress("test@example.com", "Example User"),
            Subject = "Sending with Twilio SendGrid is Fun"
        };
        msg.AddContent(MimeType.Text, "and easy to do anywhere, even with C#");
        msg.AddTo(new EmailAddress("test@example.com", "Example User"));
        var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
    }

    private static IServiceCollection ConfigureServices(IServiceCollection services)
    {
        services.AddSendGrid(options =>
        {
            options.ApiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
        });

        return services;
    }
}

Web 代理

var apiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
var proxy = new WebProxy("http://proxy:1337");
var client = new SendGridClient(proxy, apiKey);

或者在使用 DependencyInjection 时:

services.AddSendGrid(options =>
{
    options.ApiKey = Environment.GetEnvironmentVariable("SENDGRID_API_KEY");
})
.ConfigurePrimaryHttpMessageHandler(_ => new HttpClientHandler()
{
    Proxy = new WebProxy(new Uri("http://proxy:1337")),
    UseProxy = true
});

3. 项目 API 使用文档

请参考以下文档以获取关于 Twilio SendGrid API 的详细信息:

4. 项目安装方式

请按照以下步骤安装 Twilio SendGrid C# .NET 库:

  1. 通过 NuGet 包管理器自动获取:
dotnet add package SendGrid
  1. 使用 HttpClientFactory 和 Microsoft.Extensions.DependencyInjection:
dotnet add package SendGrid.Extensions.DependencyInjection
  1. GitHub 仓库 下载库文件。

  2. 将库文件添加到您的 C# 项目中,并根据需要调用相关功能。

热门项目推荐
相关项目推荐

项目优选

收起
MateChatMateChat
前端智能化场景解决方案UI库,轻松构建你的AI应用,我们将持续完善更新,欢迎你的使用与建议。 官网地址:https://matechat.gitcode.com
116
9
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
186
43
open-eBackupopen-eBackup
open-eBackup是一款开源备份软件,采用集群高扩展架构,通过应用备份通用框架、并行备份等技术,为主流数据库、虚拟化、文件系统、大数据等应用提供E2E的数据备份、恢复等能力,帮助用户实现关键数据高效保护。
HTML
83
55
HarmonyOS-ExamplesHarmonyOS-Examples
本仓将收集和展示仓颉鸿蒙应用示例代码,欢迎大家投稿,在仓颉鸿蒙社区展现你的妙趣设计!
Cangjie
261
66
mybatis-plusmybatis-plus
mybatis 增强工具包,简化 CRUD 操作。 文档 http://baomidou.com 低代码组件库 http://aizuda.com
Java
38
2
RuoYi-Cloud-Vue3RuoYi-Cloud-Vue3
🎉 基于Spring Boot、Spring Cloud & Alibaba、Vue3 & Vite、Element Plus的分布式前后端分离微服务架构权限管理系统
Vue
31
22
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
52
40
FlyFlow-flowable工作流FlyFlow-flowable工作流
类钉钉飞书样式,包含前后端代码、基于flowable的开箱即用的低代码开源专业工作流引擎
Java
12
2
RuoYi-VueRuoYi-Vue
🎉 基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统,同时提供了 Vue3 的版本
Java
168
39
anqicmsanqicms
AnQiCMS 是一款基于Go语言开发,具备高安全性、高性能和易扩展性的企业级内容管理系统。它支持多站点、多语言管理,能够满足全球化跨境运营需求。AnQiCMS 提供灵活的内容发布和模板管理功能,同时,系统内置丰富的利于SEO操作的功能,帮助企业简化运营和内容管理流程。AnQiCMS 将成为您建站的理想选择,在不断变化的市场中保持竞争力。
Go
89
7