{"id":13878818,"url":"https://github.com/ActiveCampaign/postmark-gem","last_synced_at":"2025-07-16T14:32:57.398Z","repository":{"id":713932,"uuid":"360821","full_name":"ActiveCampaign/postmark-gem","owner":"ActiveCampaign","description":"Official Ruby client library for the Postmark HTTP API","archived":false,"fork":false,"pushed_at":"2024-07-31T14:22:45.000Z","size":660,"stargazers_count":215,"open_issues_count":2,"forks_count":70,"subscribers_count":17,"default_branch":"main","last_synced_at":"2024-11-23T22:57:04.151Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://postmarkapp.com","language":"Ruby","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/ActiveCampaign.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rdoc","contributing":"CONTRIBUTING.md","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}},"created_at":"2009-11-04T14:55:57.000Z","updated_at":"2024-10-29T06:23:33.000Z","dependencies_parsed_at":"2024-06-18T13:44:15.138Z","dependency_job_id":"f7562ead-27fb-431e-a9f5-0d14287853e8","html_url":"https://github.com/ActiveCampaign/postmark-gem","commit_stats":{"total_commits":499,"total_committers":36,"mean_commits":13.86111111111111,"dds":0.6292585170340681,"last_synced_commit":"499ae9f7518c3c5e3e6d3a6d3da16e973bc2e33c"},"previous_names":["wildbit/postmark-gem"],"tags_count":80,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActiveCampaign%2Fpostmark-gem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActiveCampaign%2Fpostmark-gem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActiveCampaign%2Fpostmark-gem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActiveCampaign%2Fpostmark-gem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ActiveCampaign","download_url":"https://codeload.github.com/ActiveCampaign/postmark-gem/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226105910,"owners_count":17574416,"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-06T08:02:01.049Z","updated_at":"2024-11-24T07:31:20.207Z","avatar_url":"https://github.com/ActiveCampaign.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"\u003ca href=\"https://postmarkapp.com\"\u003e\n    \u003cimg src=\"postmark.png\" alt=\"Postmark Logo\" title=\"Postmark\" width=\"120\" height=\"120\" align=\"right\"\u003e\n\u003c/a\u003e\n\n# Postmark Ruby Gem\n\n[![Build Status](https://circleci.com/gh/ActiveCampaign/postmark-gem.svg?style=shield)](https://circleci.com/gh/ActiveCampaign/postmark-gem)\n[![Code Climate](https://codeclimate.com/github/ActiveCampaign/postmark-gem/badges/gpa.svg)](https://codeclimate.com/github/ActiveCampaign/postmark-gem)\n[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http://www.opensource.org/licenses/MIT)\n[![Gem Version](https://badge.fury.io/rb/postmark.svg)](https://badge.fury.io/rb/postmark)\n\nPostmark allows you to send your emails with high delivery rates. It also includes detailed statistics. In addition, Postmark can parse incoming emails which are forwarded back to your application.\n\nThis gem is the official wrapper for the [Postmark HTTP API](https://postmarkapp.com).\n\n## Usage\n\nPlease see the [wiki](https://github.com/ActiveCampaign/postmark-gem/wiki) for detailed instructions about sending email, using the bounce api and other Postmark API features.\nFor details about Postmark API in general, please check out [Postmark developer docs](https://postmarkapp.com/developer).\n\n## Requirements\n\nYou will need a Postmark account, server and sender signature (or verified domain) set up to use it. For details about setup, check out [wiki pages](https://github.com/ActiveCampaign/postmark-gem/wiki/Getting-Started).\n\nIf you plan using the library in a Rails project, check out the [postmark-rails](https://github.com/ActiveCampaign/postmark-rails/) gem, which\nis meant to integrate with ActionMailer. The plugin will try to use ActiveSupport JSON if it is already included. If not,\nit will attempt to use the built-in Ruby JSON library.\n\nYou can also explicitly specify which one to be used, using following code:\n\n```ruby\nPostmark.response_parser_class = :Json # :ActiveSupport or :Yajl are also supported.\n```\n\n## Installation\n\nYou can use the library with or without a Bundler.\n\nWith Bundler:\n\n```ruby\ngem 'postmark'\n```\n\nWithout Bundler:\n\n```bash\ngem install postmark\n```\n\n## Deprecations\n\nDeprecations can be either silenced or set to raise using:\n\n```rb\nPostmark::Deprecations.behavior = :silence\nPostmark::Deprecations.behavior = :raise\n```\n\n## Note on Patches/Pull Requests\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) file for details.\n\n## Issues \u0026 Comments\n\nFeel free to contact us if you encounter any issues with the library or Postmark API.\nPlease leave all comments, bugs, requests and issues on the Issues page.\n\n## License\n\nThe Postmark Ruby library is licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php) license.\nRefer to the [LICENSE](https://github.com/ActiveCampaign/postmark-gem/blob/main/LICENSE) file for more information.\n\n## Tests\n\nThe [integration tests](https://github.com/ActiveCampaign/postmark-gem/tree/main/spec/integration) currently use a real  test email address, configured via `POSTMARK_CI_RECIPIENT`.\n\n## Copyright\n\nCopyright © 2023 ActiveCampaign LLC.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FActiveCampaign%2Fpostmark-gem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FActiveCampaign%2Fpostmark-gem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FActiveCampaign%2Fpostmark-gem/lists"}