{"id":20217606,"url":"https://github.com/pforret/php_outlook_signature","last_synced_at":"2026-02-02T11:02:27.727Z","repository":{"id":57038387,"uuid":"273661041","full_name":"pforret/php_outlook_signature","owner":"pforret","description":"Create Outlook email signatures from HTML templates","archived":false,"fork":false,"pushed_at":"2024-12-06T12:30:11.000Z","size":49,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-22T01:36:17.584Z","etag":null,"topics":["email","microsoft","outlook","php","signatures"],"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/pforret.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-06-20T07:34:28.000Z","updated_at":"2025-04-14T22:27:45.000Z","dependencies_parsed_at":"2025-09-22T01:32:18.023Z","dependency_job_id":"34bb5fb0-5f21-44f3-9c9f-892d39c0b6fe","html_url":"https://github.com/pforret/php_outlook_signature","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":"spatie/package-skeleton-php","purl":"pkg:github/pforret/php_outlook_signature","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pforret%2Fphp_outlook_signature","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pforret%2Fphp_outlook_signature/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pforret%2Fphp_outlook_signature/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pforret%2Fphp_outlook_signature/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pforret","download_url":"https://codeload.github.com/pforret/php_outlook_signature/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pforret%2Fphp_outlook_signature/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29010690,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T10:37:29.253Z","status":"ssl_error","status_checked_at":"2026-02-02T10:37:28.644Z","response_time":58,"last_error":"SSL_read: 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":["email","microsoft","outlook","php","signatures"],"created_at":"2024-11-14T06:34:49.182Z","updated_at":"2026-02-02T11:02:27.683Z","avatar_url":"https://github.com/pforret.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create Outlook email signatures from a template\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/pforret/php_outlook_signature.svg?style=flat-square)](https://packagist.org/packages/pforret/php_outlook_signature)\n[![Tests](https://github.com/pforret/php_outlook_signature/workflows/Tests/badge.svg)](https://github.com/pforret/php_outlook_signature/actions)\n[![Quality Score](https://img.shields.io/scrutinizer/g/pforret/php_outlook_signature.svg?style=flat-square)](https://scrutinizer-ci.com/g/pforret/php_outlook_signature)\n[![Total Downloads](https://img.shields.io/packagist/dt/pforret/php_outlook_signature.svg?style=flat-square)](https://packagist.org/packages/pforret/php_outlook_signature)\n\n\nCreate valid Outlook HTML Signatures, from a template with placeholders. Kind of mail merge for Outlook email signatures.\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require pforret/php_outlook_signature\n```\n\n## Usage\n\n```php\nuse Pforret\\PhpOutlookSignature\\PhpOutlookSignature;\n$signature = new PhpOutlookSignature(\"\u003cfolder template\u003e\");\n$personal_details=[\n    \"person_name\"   =\u003e \"Peter Gibbons\",\n    \"person_function\"   =\u003e \"TPS Manager\",\n    ...\n];\necho $signature-\u003ecreate(\"initech/pgibbons.htm\",$personal_details);\n// this will create the pgibbons.htm email signature, and copy all required files into pgibbons_files/ subfolder.\n// it will also generate a install_signature.cmd script for easy installation of the signature into Outlook (Windows)\n```\n\n## Signature template\n\n* let's say you call your template `waffle`\n* your template folder should contain 1 HTML file `waffle.htm`\nand one asset folder with all the extra files needed (called `waffle_files`)\n* in the assets folder there should be a `filelist.xml`. If not, this package will generate one.\n* images in the assets folder that are referenced in the template as `src=\"\u003cassetfolder\u003e/\u003cimagefile\u003e\"` \nwill be included as (hidden) attachments of the email and always show up for the receiver,\ni.e. not be filtered out like external images\n* the HTML template can contain `{information}` placeholders. \nThey will be replaced by the actual value of `\"information\" =\u003e \"...\"` from the $personal_details array.\n* a template with an `{information}` placeholder that is not specified in the $personal_details array, will throw an error.\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Credits\n\n- [Peter Forret](https://github.com/pforret)\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%2Fpforret%2Fphp_outlook_signature","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpforret%2Fphp_outlook_signature","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpforret%2Fphp_outlook_signature/lists"}