{"id":23859000,"url":"https://github.com/coloredcow/sespress","last_synced_at":"2025-09-08T06:31:11.707Z","repository":{"id":37519701,"uuid":"115789529","full_name":"ColoredCow/SesPress","owner":"ColoredCow","description":"WordPress plugin to use AWS Simple Email Service","archived":false,"fork":false,"pushed_at":"2023-04-19T18:43:50.000Z","size":61,"stargazers_count":10,"open_issues_count":7,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-08T17:52:38.669Z","etag":null,"topics":["aws","aws-ses","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ColoredCow.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}},"created_at":"2017-12-30T10:25:52.000Z","updated_at":"2024-06-01T19:31:41.000Z","dependencies_parsed_at":"2025-01-03T03:31:23.409Z","dependency_job_id":"13777217-6321-4d94-bad0-484aabe9cd5d","html_url":"https://github.com/ColoredCow/SesPress","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ColoredCow/SesPress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2FSesPress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2FSesPress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2FSesPress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2FSesPress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColoredCow","download_url":"https://codeload.github.com/ColoredCow/SesPress/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2FSesPress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274145949,"owners_count":25230114,"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","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws","aws-ses","wordpress","wordpress-plugin"],"created_at":"2025-01-03T03:29:02.873Z","updated_at":"2025-09-08T06:31:11.376Z","avatar_url":"https://github.com/ColoredCow.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![sespress-min](https://user-images.githubusercontent.com/12053186/37273426-d000bde4-25ff-11e8-954e-b2be52a83fb0.png)\n\n## About\n\nWordPress plugin to send emails using Amazon's Simple Email Service.\n\n## Installation\n\n1. Clone or download the repository in your project's plugins folder\n```sh\ngit clone https://github.com/coloredcow/sespress.git\n```\n2. Install dependencies via composer install\n```sh\ncd wp-content/plugins/sespress\ncomposer install\n```\n3. Activate SesPress plugin from the WordPress Admin Dashboard\n4. Once activated, go to menu `Settings \u003e SesPress`. Enter your AWS key ID, secret key and region to confirm credentials.\n\n## Usage\n\nAdd the following snippet at the end of your active theme's `functions.php`. Change the recipients and sender name and email accordingly.\n\n**Note**: This will change your site's behavior.\n\n```php\nadd_action( 'wp', 'sespress_send_sample' );\nfunction sespress_send_sample() {\n\n    $args = [\n        'subject' =\u003e 'Welcome to SesPress',\n        'recipients' =\u003e [\n            [\n                'name' =\u003e 'John Doe',\n                'email' =\u003e 'johndoe@example.com',\n            ],\n            [\n                'name' =\u003e 'Jane Doe',\n                'email' =\u003e 'janedoe@example.com',\n            ],\n        ],\n        'sender' =\u003e [\n            'name' =\u003e 'Admin',\n            'email' =\u003e 'admin@mysite.com',\n        ],\n        'message' =\u003e [\n            'html' =\u003e '\u003ch2\u003eTest message embedded in HTML tags.\u003c/h2\u003e',\n        ]\n    ];\n    $sespress = new SesPress;\n    $result = $sespress-\u003esend( $args );\n    wp_die( $result['data'] );\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Fsespress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoloredcow%2Fsespress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Fsespress/lists"}