{"id":20458732,"url":"https://github.com/resend/resend-java","last_synced_at":"2026-04-15T17:01:19.547Z","repository":{"id":189239500,"uuid":"680290008","full_name":"resend/resend-java","owner":"resend","description":"Resend's Java SDK","archived":false,"fork":false,"pushed_at":"2026-04-10T04:52:27.000Z","size":423,"stargazers_count":39,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-10T06:34:58.540Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","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","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-18T20:17:50.000Z","updated_at":"2026-04-09T14:42:53.000Z","dependencies_parsed_at":"2024-06-11T16:48:46.967Z","dependency_job_id":"957c8000-d04c-4c77-b8af-a2339523499b","html_url":"https://github.com/resend/resend-java","commit_stats":null,"previous_names":["resendlabs/resend-java","resend/resend-java"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/resend/resend-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/resend","download_url":"https://codeload.github.com/resend/resend-java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/resend%2Fresend-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31705630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T05:11:36.334Z","status":"ssl_error","status_checked_at":"2026-04-12T05:11:27.332Z","response_time":58,"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":[],"created_at":"2024-11-15T12:13:40.259Z","updated_at":"2026-04-12T06:07:59.380Z","avatar_url":"https://github.com/resend.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Resend Java SDK\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n![Build](https://github.com/resendlabs/resend-java/actions/workflows/ci.yml/badge.svg)\n![Release](https://img.shields.io/github/release/resendlabs/resend-java.svg?style=flat-square)\n---\n\n## Installation\n\nTo install the Java SDK, add the following dependency to your project:\n\nGradle\n\n```gradle\nimplementation 'com.resend:resend-java:+'\n```\n\nMaven\n\n```Maven\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.resend\u003c/groupId\u003e\n    \u003cartifactId\u003eresend-java\u003c/artifactId\u003e\n    \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n\n```\n## Setup\n\nFirst, you need to get an API key, which is available in the [Resend Dashboard](https://resend.com).\n## Example\n\n```java\npackage com.resend;\n\nimport com.resend.services.emails.model.*;\nimport com.resend.core.provider.AuthenticationProvider;\nimport com.resend.core.provider.impl.AuthenticationProviderStandard;\nimport com.resend.services.emails.ResendEmails;\n\npublic class Main {\n    public static void main(String[] args) {\n        Resend resend = new Resend(\"re_123\");\n\n        CreateEmailOptions params = CreateEmailOptions.builder()\n                .from(\"Me \u003cme@exemple.io\u003e\")\n                .to(\"to@example\", \"you@example.com\")\n                .cc(\"carbon@example.com\", \"copy@example.com\")\n                .bcc(\"blind@example.com\", \"carbon.copy@example.com\")\n                .replyTo(\"reply@example.com\", \"to@example.com\")\n                .text(\"Hello, world!\")\n                .subject(\"Hello from Java!\")\n                .build();\n\n        try {\n            CreateEmailResponse data = resend.emails().send(params);\n            System.out.println(data.getId());\n        } catch (ResendException e) {\n            e.printStackTrace();\n        }\n    }\n}\n\n\n```\n\nYou can view all the examples in the [examples folder](https://github.com/resendlabs/resend-java-example)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresend%2Fresend-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fresend%2Fresend-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresend%2Fresend-java/lists"}