{"id":13740815,"url":"https://github.com/lpil/zeptomail","last_synced_at":"2026-04-01T17:01:25.201Z","repository":{"id":39572099,"uuid":"506809814","full_name":"lpil/zeptomail","owner":"lpil","description":"A client for the Zeptomail transactional email API","archived":false,"fork":false,"pushed_at":"2025-12-28T16:58:07.000Z","size":25,"stargazers_count":8,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T23:42:19.178Z","etag":null,"topics":["api-client","email","gleam-lang"],"latest_commit_sha":null,"homepage":"https://www.zoho.com/zeptomail/","language":"Gleam","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lpil.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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":"2022-06-23T22:33:08.000Z","updated_at":"2026-02-18T12:46:32.000Z","dependencies_parsed_at":"2025-03-15T15:43:50.164Z","dependency_job_id":"8cf075e4-6889-491f-b23c-dbb178087c01","html_url":"https://github.com/lpil/zeptomail","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"ae70ad6ba0b2fa95f2f5fc5d491950bd3772fb36"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/lpil/zeptomail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lpil%2Fzeptomail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lpil%2Fzeptomail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lpil%2Fzeptomail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lpil%2Fzeptomail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lpil","download_url":"https://codeload.github.com/lpil/zeptomail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lpil%2Fzeptomail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":["api-client","email","gleam-lang"],"created_at":"2024-08-03T04:00:52.502Z","updated_at":"2026-04-01T17:01:25.108Z","avatar_url":"https://github.com/lpil.png","language":"Gleam","funding_links":[],"categories":["Packages"],"sub_categories":["Email"],"readme":"# zeptomail\n\n[![Package Version](https://img.shields.io/hexpm/v/zeptomail)](https://hex.pm/packages/zeptomail)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/zeptomail/)\n\nA wrapper for [ZeptoMail's transactional email API](https://www.zoho.com/zeptomail/).\n\n\n## Usage\n\nAdd this package to your Gleam project:\n\n```sh\ngleam add zeptomail\n```\n\nAnd then send some email!\n\n```gleam\nimport gleam/httpc\nimport zeptomail.{Addressee}\n\npub fn main() {\n  let key = \"your-api-key-here\"\n\n  // Create an email to send\n  let email = zeptomail.Email(\n    from: Addressee(\"Mike\", \"mike@example.com\"),\n    to: [Addressee(\"Joe\", \"joe@example.com\")],\n    reply_to: [],\n    cc: [Addressee(\"Robert\", \"robert@example.com\")],\n    bcc: [],\n    body: zeptomail.TextBody(\"Hello, Mike!\"),\n    subject: \"Hello, Joe!\",\n  )\n\n  // Prepare an API request that sends the email\n  let request = zeptomail.email_request(email, key)\n\n  // Send the API request using `gleam_httpc`\n  let assert Ok(response) = httpc.send(request)\n\n  // Parse the API response to verify success\n  let assert Ok(data) = zeptomail.decode_email_response(response)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flpil%2Fzeptomail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flpil%2Fzeptomail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flpil%2Fzeptomail/lists"}