{"id":15063639,"url":"https://github.com/mimiquate/tower_email","last_synced_at":"2025-08-07T21:06:37.787Z","repository":{"id":248894171,"uuid":"827973456","full_name":"mimiquate/tower_email","owner":"mimiquate","description":"Elixir error tracking and reporting to your e-mail inbox","archived":false,"fork":false,"pushed_at":"2025-04-08T13:50:53.000Z","size":147,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T14:38:05.386Z","etag":null,"topics":["elixir","email-notification","error-monitoring","error-reporting","error-tracking","tower"],"latest_commit_sha":null,"homepage":"https://hex.pm/packages/tower_email","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mimiquate.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-07-12T19:36:25.000Z","updated_at":"2025-04-08T13:50:56.000Z","dependencies_parsed_at":"2024-08-07T21:59:06.774Z","dependency_job_id":"b865bbe3-d0fa-4ff3-b45f-25e67a2fd744","html_url":"https://github.com/mimiquate/tower_email","commit_stats":null,"previous_names":["mimiquate/tower_email"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mimiquate%2Ftower_email","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mimiquate%2Ftower_email/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mimiquate%2Ftower_email/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mimiquate%2Ftower_email/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mimiquate","download_url":"https://codeload.github.com/mimiquate/tower_email/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248208618,"owners_count":21065203,"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":["elixir","email-notification","error-monitoring","error-reporting","error-tracking","tower"],"created_at":"2024-09-25T00:05:10.381Z","updated_at":"2025-04-10T11:25:23.615Z","avatar_url":"https://github.com/mimiquate.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TowerEmail\n\n[![ci](https://github.com/mimiquate/tower_email/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/mimiquate/tower_email/actions?query=branch%3Amain)\n[![Hex.pm](https://img.shields.io/hexpm/v/tower_email.svg)](https://hex.pm/packages/tower_email)\n[![Documentation](https://img.shields.io/badge/Documentation-purple.svg)](https://hexdocs.pm/tower_email)\n\nError tracking and reporting to your e-mail inbox.\n\nSimple send-me-an-email reporter for [Tower](https://github.com/mimiquate/tower) error handler.\n\n## Installation\n\nThe package can be installed by adding `tower_email` to your list of dependencies in `mix.exs`:\n\n```elixir\n# mix.exs\n\ndef deps do\n  [\n    {:tower_email, \"~\u003e 0.6.0\"}\n  ]\nend\n```\n\n## Usage\n\nRegister the reporter with Tower.\n\n```elixir\n# config/config.exs\n\nconfig(\n  :tower,\n  :reporters,\n  [\n    # along any other possible reporters\n    TowerEmail\n  ]\n)\n```\n\nAnd make any additional configurations specific to this reporter.\n\n```elixir\n# Build-time config (config/{config, dev, test, prod}.exs)\n\nconfig :tower_email,\n  otp_app: :your_app,\n  from: {\"Tower\", \"tower@\u003cyour_domain\u003e\"},\n  to: \"\u003crecipient email address\u003e\"\n\n# config/runtime.exs\nconfig :tower_email,\n  environment: System.get_env(\"DEPLOYMENT_ENV\", to_string(config_env()))\n```\n\nConfiguring `Swoosh` adapter for `TowerEmail.Mailer`:\n\n```elixir\n# config/dev.exs\nconfig :tower_email, TowerEmail.Mailer, adapter: Swoosh.Adapters.Local\n\n# config/prod.exs\nconfig :tower_email, TowerEmail.Mailer, adapter: Swoosh.Adapters.Postmark,\n\n# config/runtime.exs\nconfig :tower_email, TowerEmail.Mailer, api_key: System.fetch_env!(\"POSTMARK_API_KEY\")\n```\n\nConfiguring `TowerEmail.Mailer` is analogous on how to configure any `Swoosh.Mailer` https://hexdocs.pm/swoosh/Swoosh.Mailer.html.\n\n## License\n\nCopyright 2024 Mimiquate\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmimiquate%2Ftower_email","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmimiquate%2Ftower_email","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmimiquate%2Ftower_email/lists"}