{"id":13714176,"url":"https://github.com/resend/resend-go","last_synced_at":"2025-10-24T16:48:36.461Z","repository":{"id":167345944,"uuid":"642608420","full_name":"resend/resend-go","owner":"resend","description":"Resend's Official Go SDK","archived":false,"fork":false,"pushed_at":"2025-03-25T03:28:44.000Z","size":100,"stargazers_count":124,"open_issues_count":1,"forks_count":12,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-05T09:04:41.489Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://resend.com","language":"Go","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/resend.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2023-05-19T00:44:51.000Z","updated_at":"2025-04-04T04:37:54.000Z","dependencies_parsed_at":"2023-12-27T16:32:17.363Z","dependency_job_id":"cde8598d-8de0-4fcb-94b7-96077a2f6261","html_url":"https://github.com/resend/resend-go","commit_stats":{"total_commits":42,"total_committers":9,"mean_commits":4.666666666666667,"dds":0.5238095238095238,"last_synced_commit":"df93a0474b690fb772ee14c8425efbf5c6597979"},"previous_names":["resendlabs/resend-go","resend/resend-go"],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/resend","download_url":"https://codeload.github.com/resend/resend-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247325693,"owners_count":20920714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-08-02T23:01:54.055Z","updated_at":"2025-10-24T16:48:36.440Z","avatar_url":"https://github.com/resend.png","language":"Go","funding_links":[],"categories":["Repositories"],"sub_categories":[],"readme":"# Resend Go SDK\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n![Build](https://github.com/resend/resend-go/actions/workflows/go.yml/badge.svg)\n![Release](https://img.shields.io/github/release/resend/resend-go.svg?style=flat-square)\n[![Go Reference](https://pkg.go.dev/badge/github.com/resend/resend-go/v2.svg)](https://pkg.go.dev/github.com/resend/resend-go/v2)\n---\n\n## Installation\n\nTo install the Go SDK, simply execute the following command on a terminal:\n\n```\ngo get github.com/resend/resend-go/v2\n```\n\n## Setup\n\nFirst, you need to get an API key, which is available in the [Resend Dashboard](https://resend.com).\n\n## Example\n\n```go\nimport (\n    \"fmt\"\n    \"github.com/resend/resend-go/v2\"\n)\n\nfunc main() {\n    apiKey := \"re_123\"\n\n    client := resend.NewClient(apiKey)\n\n    params := \u0026resend.SendEmailRequest{\n        To:      []string{\"to@example\", \"you@example.com\"},\n        From:    \"me@exemple.io\",\n        Text:    \"hello world\",\n        Subject: \"Hello from Golang\",\n        Cc:      []string{\"cc@example.com\"},\n        Bcc:     []string{\"cc@example.com\"},\n        ReplyTo: \"replyto@example.com\",\n    }\n\n    sent, err := client.Emails.Send(params)\n    if err != nil {\n        panic(err)\n    }\n    fmt.Println(sent.Id)\n}\n\n```\n\nYou can view all the examples in the [examples folder](https://github.com/resend/resend-go/tree/main/examples)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresend%2Fresend-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fresend%2Fresend-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresend%2Fresend-go/lists"}