{"id":15629849,"url":"https://github.com/dcblogdev/laravel-sent-emails","last_synced_at":"2025-04-13T04:59:10.523Z","repository":{"id":37356902,"uuid":"279137838","full_name":"dcblogdev/laravel-sent-emails","owner":"dcblogdev","description":"Store outgoing emails in Laravel","archived":false,"fork":false,"pushed_at":"2025-02-24T22:12:17.000Z","size":378,"stargazers_count":252,"open_issues_count":1,"forks_count":26,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-13T04:59:05.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","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/dcblogdev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"github":["dcblogdev"]}},"created_at":"2020-07-12T19:55:09.000Z","updated_at":"2025-03-25T02:34:39.000Z","dependencies_parsed_at":"2024-05-06T09:26:04.680Z","dependency_job_id":"8f99df3d-7b95-43bf-af37-8d426ce01910","html_url":"https://github.com/dcblogdev/laravel-sent-emails","commit_stats":{"total_commits":27,"total_committers":3,"mean_commits":9.0,"dds":0.07407407407407407,"last_synced_commit":"8919e8d266838d3c52f187e40760cef3d303f5d5"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-sent-emails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-sent-emails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-sent-emails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-sent-emails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcblogdev","download_url":"https://codeload.github.com/dcblogdev/laravel-sent-emails/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248665759,"owners_count":21142123,"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-10-03T10:29:20.209Z","updated_at":"2025-04-13T04:59:10.503Z","avatar_url":"https://github.com/dcblogdev.png","language":"PHP","funding_links":["https://github.com/sponsors/dcblogdev"],"categories":[],"sub_categories":[],"readme":"## Community\n\nThere is a Discord community. https://discord.gg/VYau8hgwrm For quick help, ask questions in the appropriate channel.\n\n# Record and view all sent emails\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/dcblogdev/laravel-sent-emails.svg?style=flat-square)](https://packagist.org/packages/dcblogdev/laravel-sent-emails)\n[![Total Downloads](https://img.shields.io/packagist/dt/dcblogdev/laravel-sent-emails.svg?style=flat-square)](https://packagist.org/packages/dcblogdev/laravel-sent-emails)\n\n![Example UI](https://repository-images.githubusercontent.com/279137838/610e3200-1d0e-11eb-8a39-7812708a55cd)\n\nWatch a video walkthrough https://www.youtube.com/watch?v=Oj_OF5n4l4k\u0026feature=youtu.be\n\n![Sample UI](https://user-images.githubusercontent.com/1018170/107695686-d80d7c00-6ca8-11eb-8a49-c08ddfa701fb.png)\n\n## Installation\n\n\u003e Note version 2+ requires Laravel 9+\n\nYou can install the package via composer:\n\n```\ncomposer require dcblogdev/laravel-sent-emails\n```\n\n## Migration\n\nYou can publish the migration with:\n\n```\nphp artisan vendor:publish --provider=\"Dcblogdev\\LaravelSentEmails\\SentEmailsServiceProvider\" --tag=\"migrations\"\n```\n\nAfter the migration has been published you can the tables by running the migration:\n\n```\nphp artisan migrate\n```\n\n## Config\n\nYou can publish the config with:\n\n```\nphp artisan vendor:publish --provider=\"Dcblogdev\\LaravelSentEmails\\SentEmailsServiceProvider\" --tag=\"config\"\n```\n\nAfter the config has been published you can change the route path for sentemails from /sentemails to anything you like such as /admin/sentemails:\n\n```\n'routepath' =\u003e 'sentemails'\n```\n\n### ENV variables\n\n```php\nSENT_EMAILS_ROUTE_PATH=admin/sentemails\nSENT_EMAILS_PER_PAGE=10\nSENT_EMAILS_STORE_EMAILS=true\nSENT_EMAILS_NO_EMAILS_MESSAGE='No emails have been sent'\nSENT_EMAILS_COMPRESS_BODY=true\n```\n\n## Views\nYou can publish the view with:\n\n```\nphp artisan vendor:publish --provider=\"Dcblogdev\\LaravelSentEmails\\SentEmailsServiceProvider\" --tag=\"views\"\n```\n\nThe views will be published to resources/views/vendor/sentemails\n\nYou can change the views to match your theme if desired.\n\n## Usage\n\nAs soon as an email is sent it will be added to a database table and will be viewable in /sentemails.\n\n\u003e Note you have to be logged in to be able to see /sentemails, if you are not logged in when you attempt to see /sentemails you will be redirected to a login route.\n\n### Changelog\n\nPlease see [Releases](https://github.com/dcblogdev/laravel-sent-emails/releases) for more information what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n### Security\n\nIf you discover any security related issues, please email dave@dcblog.dev instead of using the issue tracker.\n\n## Credits\n\n- [David Carr](https://github.com/dcblogdev)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcblogdev%2Flaravel-sent-emails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcblogdev%2Flaravel-sent-emails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcblogdev%2Flaravel-sent-emails/lists"}