{"id":26650976,"url":"https://github.com/gtmoose32/sendgrid-azure-eventgrid","last_synced_at":"2026-04-17T13:32:59.717Z","repository":{"id":65849731,"uuid":"227960175","full_name":"gtmoose32/sendgrid-azure-eventgrid","owner":"gtmoose32","description":"A library for .NET that converts Twilio SendGrid web hook events into EventGrid events and publishes them.","archived":false,"fork":false,"pushed_at":"2023-04-21T11:56:07.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-26T03:17:01.838Z","etag":null,"topics":["azure","azure-event-grid","azure-functions","eventgrid","sendgrid","sendgrid-inbound-webhook-parser","twilio","twilio-sendgrid"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gtmoose32.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-12-14T03:27:47.000Z","updated_at":"2023-02-13T18:44:13.000Z","dependencies_parsed_at":"2025-07-23T19:04:30.467Z","dependency_job_id":"2482725b-087d-4b1c-9ca3-768c5fe04c7d","html_url":"https://github.com/gtmoose32/sendgrid-azure-eventgrid","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gtmoose32/sendgrid-azure-eventgrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtmoose32%2Fsendgrid-azure-eventgrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtmoose32%2Fsendgrid-azure-eventgrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtmoose32%2Fsendgrid-azure-eventgrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtmoose32%2Fsendgrid-azure-eventgrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gtmoose32","download_url":"https://codeload.github.com/gtmoose32/sendgrid-azure-eventgrid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtmoose32%2Fsendgrid-azure-eventgrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31931443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure","azure-event-grid","azure-functions","eventgrid","sendgrid","sendgrid-inbound-webhook-parser","twilio","twilio-sendgrid"],"created_at":"2025-03-25T02:49:15.494Z","updated_at":"2026-04-17T13:32:59.698Z","avatar_url":"https://github.com/gtmoose32.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Moosesoft.SendGrid.Azure.EventGrid\n[![Build status](https://dev.azure.com/gtmoose/Mathis%20Home/_apis/build/status/SendGrid.Azure.EventGrid%20-%20CICD)](https://dev.azure.com/gtmoose/Mathis%20Home/_build/latest?definitionId=9) \n[![nuget](https://img.shields.io/nuget/v/Moosesoft.SendGrid.Azure.EventGrid.svg)](https://www.nuget.org/packages/Moosesoft.SendGrid.Azure.EventGrid/)\n![Nuget](https://img.shields.io/nuget/dt/Moosesoft.SendGrid.Azure.EventGrid)\n\n## What is it?\nA library for .NET that converts [Twilio SendGrid delivery and engagment events](https://sendgrid.com/docs/for-developers/tracking-events/event/) into [Azure Event Grid](https://azure.microsoft.com/en-us/services/event-grid/) events and publishes them to a topic.\n\n## Installing Moosesoft.SendGrid.Azure.EventGrid\n```\ndotnet add package Moosesoft.SendGrid.Azure.EventGrid\n```\n\n## Azure Function Sample\nWorking version of the sample code below is found [here](https://github.com/gtmoose32/sendgrid-azure-eventgrid/tree/master/samples).  Note:  The Azure Event Grid topic configuration settings in the sample are fakes.  \n\n```C#\npublic class SendGridEventHandler\n{\n    private readonly IEventGridEventPublisher _eventGridEventPublisher;\n\n    public SendGridEventHandler(IEventGridEventPublisher eventGridEventPublisher)\n    {\n        _eventGridEventPublisher = eventGridEventPublisher ?? throw new ArgumentNullException(nameof(eventGridEventPublisher));\n    }\n\n    [FunctionName(nameof(HandleSendGridEventsAsync))]\n    public async Task\u003cIActionResult\u003e HandleSendGridEventsAsync(\n        [HttpTrigger(AuthorizationLevel.Function, \"post\", Route = null)] HttpRequest request, \n        CancellationToken cancellationToken)\n    {\n        await _eventGridEventPublisher.PublishEventsAsync(request.Body, cancellationToken).ConfigureAwait(false);\n\n        return new OkResult();\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtmoose32%2Fsendgrid-azure-eventgrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgtmoose32%2Fsendgrid-azure-eventgrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtmoose32%2Fsendgrid-azure-eventgrid/lists"}