{"id":20235294,"url":"https://github.com/phphleb/muller","last_synced_at":"2026-03-02T17:04:21.707Z","repository":{"id":57040470,"uuid":"361129098","full_name":"phphleb/muller","owner":"phphleb","description":"Simple PHP Mailer","archived":false,"fork":false,"pushed_at":"2024-01-29T15:53:25.000Z","size":14,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T00:58:19.511Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/phphleb.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":"2021-04-24T10:09:34.000Z","updated_at":"2022-10-11T18:20:54.000Z","dependencies_parsed_at":"2025-04-10T18:53:05.709Z","dependency_job_id":"fde98d12-cae2-403f-a56d-89917d96794b","html_url":"https://github.com/phphleb/muller","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/phphleb/muller","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phphleb%2Fmuller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phphleb%2Fmuller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phphleb%2Fmuller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phphleb%2Fmuller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phphleb","download_url":"https://codeload.github.com/phphleb/muller/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phphleb%2Fmuller/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30011186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T17:00:27.440Z","status":"ssl_error","status_checked_at":"2026-03-02T17:00:03.402Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-14T08:15:46.706Z","updated_at":"2026-03-02T17:04:21.665Z","avatar_url":"https://github.com/phphleb.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":" ## \"Muller\" is the strict Electronic Postman (PHP Mailer)\n\n[![HLEB1](https://img.shields.io/badge/HLEB-1-olive)](https://github.com/phphleb/hleb) [![HLEB2](https://img.shields.io/badge/HLEB-2-darkcyan)](https://github.com/phphleb/hleb) ![PHP](https://img.shields.io/badge/PHP-7-blue) ![PHP](https://img.shields.io/badge/PHP-8-blue) [![License: MIT](https://img.shields.io/badge/License-MIT%20(Free)-brightgreen.svg)](https://github.com/phphleb/hleb/blob/master/LICENSE)\n\n\nThe `Muller` is not included in the original configuration of the framework [HLEB2](https://github.com/phphleb/hleb), so it must be copied to the folder with the vendor/phphleb  libraries from the [github.com/phphleb/muller](https://github.com/phphleb/muller)  repository or installed using Composer:\n\n```bash\n$ composer require phphleb/muller\n```\n\nStandard email sending via PHP function `mail(...)`. Used to confirm the registration of the framework, so SMTP is not supported.\n\n```php\n// Include or autoload\ninclude '\u003cvendor directory\u003e/phphleb/muller/Src/DefaultMail.php';\ninclude '\u003cvendor directory\u003e/phphleb/muller/Src/Errors.php';\ninclude '\u003cvendor directory\u003e/phphleb/muller/StandardMail.php';\n\n$mail = new \\Phphleb\\Muller\\StandardMail(true); // Allow sending to multiple destinations\n\n$mail-\u003esetNameFrom('User Name');\n$mail-\u003esetAddressFrom('mailbox@main-site.com');\n$mail-\u003esetParameters('-fmailbox@main-site.com');\n$mail-\u003esetTitle('Verification letter');\n\n$mail-\u003esetDebug(true);\n$mail-\u003esetDebugPath('\u003cstorage directory\u003e/logs');\n$mail-\u003esaveOnlyToFile(false);\n$mail-\u003esaveFileIntoDirectory('\u003cstorage directory\u003e/logs');\n\n$mail-\u003esetTo('test-address-1@example-site.ru');\n$mail-\u003esetTo('test-address-2@example-site.ru', 'Recipient 2');\n$mail-\u003esetToMultiple(['test-address-3@example-site.ru' =\u003e 'Recipient 3', 'test-address-4@example-site.ru' =\u003e 'Recipient 4']);\n\n$mail-\u003esetContent('\n\u003c!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\u003e\n\u003chtml xmlns=\"http://www.w3.org/1999/xhtml\"\u003e\n    \u003chead\u003e\n        \u003cmeta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /\u003e\n    \u003c/head\u003e\n    \u003cbody style=\"margin: 0; padding: 0; background-color: #E1D2C1; color: #000000\"\u003e\n        \u003ctable border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"\u003e\n            \u003ctr\u003e\n                \u003ctd\u003e \n                    Test letter text.\n                \u003c/td\u003e\n            \u003c/tr\u003e\n        \u003c/table\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n');\n$mail-\u003esend();\n\nvar_dump($mail-\u003egetErrors());\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphphleb%2Fmuller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphphleb%2Fmuller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphphleb%2Fmuller/lists"}