{"id":37234318,"url":"https://github.com/envialosimple-dev/transaccional-php","last_synced_at":"2026-01-15T03:58:34.048Z","repository":{"id":208854028,"uuid":"722644507","full_name":"envialosimple-dev/transaccional-php","owner":"envialosimple-dev","description":"PHP SDK for EnvíaloSimple Transaccional","archived":false,"fork":false,"pushed_at":"2025-04-17T17:53:52.000Z","size":47,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T14:14:45.781Z","etag":null,"topics":["email","envialosimple","library","php","sdk","transactional"],"latest_commit_sha":null,"homepage":"https://envialosimple.com/transaccional","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/envialosimple-dev.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,"zenodo":null}},"created_at":"2023-11-23T15:39:10.000Z","updated_at":"2025-05-17T01:08:30.000Z","dependencies_parsed_at":"2025-04-16T14:44:24.615Z","dependency_job_id":"49954343-b41e-439e-93fc-cf93e80f320a","html_url":"https://github.com/envialosimple-dev/transaccional-php","commit_stats":null,"previous_names":["envialosimple-dev/transaccional-php"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/envialosimple-dev/transaccional-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envialosimple-dev%2Ftransaccional-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envialosimple-dev%2Ftransaccional-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envialosimple-dev%2Ftransaccional-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envialosimple-dev%2Ftransaccional-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/envialosimple-dev","download_url":"https://codeload.github.com/envialosimple-dev/transaccional-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envialosimple-dev%2Ftransaccional-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28442357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"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":["email","envialosimple","library","php","sdk","transactional"],"created_at":"2026-01-15T03:58:33.392Z","updated_at":"2026-01-15T03:58:34.041Z","avatar_url":"https://github.com/envialosimple-dev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://envialosimple.com/transaccional\"\u003e\u003cimg src=\"https://envialosimple.com/images/logo_tr.svg\" width=\"200px\"/\u003e\u003c/a\u003e\n\n# EnvíaloSimple Transaccional - PHP SDK\n\n## Installation\n\n```bash\ncomposer require envialosimple/transaccional\n```\n\n## Basic Usage\n\n```php\nuse EnvialoSimple\\Transaccional;\nuse EnvialoSimple\\Transaccional\\Helpers\\Builder\\MailParams;\n\n$estr = new Transaccional($your_api_key);\n\n$mailParams = new MailParams();\n\n$mailParams\n    -\u003esetFrom('no-reply@mycompany.com', 'MyCompany Notifications')\n    -\u003esetTo('john.doe@example.com', 'John Doe')\n    -\u003esetReplyTo('do-reply@mycompany.com')\n    -\u003esetPreviewText('A glimpse of what comes next...')\n    -\u003esetSubject('This is a subject')\n    -\u003esetHtml('\u003ch1\u003eHTML emails are cool, {{ name }}\u003c/h1\u003e')\n    -\u003esetText('Text emails are also cool, {{ name }}')\n    -\u003esetContext(['name' =\u003e 'John'])\n    ;\n\n$estr-\u003email-\u003esend($mailParams);\n```\n\n## Multiple Recipients Usage\n\n```php\nuse EnvialoSimple\\Transaccional;\nuse EnvialoSimple\\Transaccional\\Helpers\\Builder\\MailParams;\n\n$estr = new Transaccional($your_api_key);\n\n$mailParams = new MailParams();\n\n$mailParams\n    -\u003esetFrom('no-reply@mycompany.com', 'MyCompany Notifications')\n    -\u003esetTo([\n        [\"email\" =\u003e 'john.doe@example.com', \"name\" =\u003e 'John Doe'],\n        [\"email\" =\u003e 'jane.doe@example.com', \"name\" =\u003e 'Jane Doe'],\n        [\"email\" =\u003e 'sean.doe@example.com']                   \n    ])\n    -\u003esetReplyTo('do-reply@mycompany.com')\n    -\u003esetPreviewText('A glimpse of what comes next...')\n    -\u003esetSubject('This is a subject')\n    -\u003esetHtml('\u003ch1\u003eHTML emails are cool, {{ name }}\u003c/h1\u003e')\n    -\u003esetText('Text emails are also cool, {{ name }}')\n    -\u003esetContext(['name' =\u003e 'John'])\n    ;\n\n$estr-\u003email-\u003esend($mailParams);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvialosimple-dev%2Ftransaccional-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenvialosimple-dev%2Ftransaccional-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvialosimple-dev%2Ftransaccional-php/lists"}