{"id":37005549,"url":"https://github.com/j-jalving/statamic-autograph","last_synced_at":"2026-01-14T00:40:36.258Z","repository":{"id":191759443,"uuid":"685192914","full_name":"j-jalving/statamic-autograph","owner":"j-jalving","description":"Create custom HTML e-mail signatures for your entire team.","archived":false,"fork":false,"pushed_at":"2024-05-21T22:19:07.000Z","size":1123,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-09T09:13:27.393Z","etag":null,"topics":["email","statamic-addon"],"latest_commit_sha":null,"homepage":"https://statamic.com/addons/j-jalving/autograph","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/j-jalving.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-08-30T17:52:07.000Z","updated_at":"2024-05-21T22:14:12.000Z","dependencies_parsed_at":"2024-02-08T15:28:23.654Z","dependency_job_id":"8f1606e3-6cd2-47ef-99aa-4f45a03e35da","html_url":"https://github.com/j-jalving/statamic-autograph","commit_stats":null,"previous_names":["j-jalving/statamic-autograph"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/j-jalving/statamic-autograph","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j-jalving%2Fstatamic-autograph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j-jalving%2Fstatamic-autograph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j-jalving%2Fstatamic-autograph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j-jalving%2Fstatamic-autograph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/j-jalving","download_url":"https://codeload.github.com/j-jalving/statamic-autograph/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j-jalving%2Fstatamic-autograph/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28406520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"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":["email","statamic-addon"],"created_at":"2026-01-14T00:40:36.172Z","updated_at":"2026-01-14T00:40:36.247Z","avatar_url":"https://github.com/j-jalving.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Statamic Autograph\n\n![alt text](https://github.com/j-jalving/statamic-autograph/blob/main/product.png?raw=true)\n\n\u003e Statamic Autograph is a Statamic addon that makes it easy to create HTML signatures\n\u003e for every member of your team. Create your own unique templates, then use Autograph\n\u003e to generate personalized HTML code that is ready to use in their favourite e-mail\n\u003e client.\n\u003e \n## Features\n\nWith this addon, you can:\n\n- Create e-mail signature templates using Antlers or Blade files.\n- Generate HTML code that is ready to use in your teams favorite e-mail client.\n- Preview what the e-mail signature will look like for each team member.\n- Get user data from control panel accounts or any other collection.\n- Fully customizable design with support for multiple template files.\n\n## How to Install\n\nYou can search for this addon in the `Tools \u003e Addons` section of the Statamic control panel and click **install**, or run the following command from your project root:\n\n``` bash\ncomposer require j-jalving/statamic-autograph\n```\n\n## How to Use\n\nUsing Statamic Autograph is really simple:\n\n1. Make sure at least one template file is present in the templates folder (default: `resources/views/autograph`). A simple default template can be published as a starting point (see instructions below).\n2. Open the Autograph page, select a user and click the Generate button.\n3. An HTML code block will appear, copy this code to your prefered e-mail client. \n  \n\u003e Note: I don't have instructions how to do this for each client, but a quick Google search should do the trick.\n\n## Create a template\n\nBy default, the addon looks for `.antlers.html` or `.blade.php` template files in the `resources/views/autograph` folder (though this path can be changed in the config). You can do everything in your template that you can do in any other Antlers view, but on top of that an `autograph` variable is avaiable containing all data for the selected user.\n\n#### Important!\nTo make sure your images and links work everywhere, make sure you use the included `full_url` modifier on all relative url's like this: \n\n```html\n\u003cimg src=\"{{ url | full_url }}\" /\u003e\n```\n\nThis converts them to absolute url's that will work everywhere. \n\n\n## Configuration\n\nA config file can be published (see below) for you to specify your own personal preferences. All options are are explained in the config file.\n\n## Publishables\n\nYou can publish all of the publishables with:\n\n```sh\nphp artisan vendor:publish --provider=\"JJalving\\Autograph\\ServiceProvider\"\n```\n\nOr publish them individually by using tags:\n\n```sh\nphp artisan vendor:publish --provider=\"JJalving\\Autograph\\ServiceProvider\" --tag=\"config\"\nphp artisan vendor:publish --provider=\"JJalving\\Autograph\\ServiceProvider\" --tag=\"templates\"\n```\n\n## Interface\n\nThe interface is made as simple as possible for your users. Simply select a user and template, then submit. A preview and the HTML code will be displayed, ready to copy.\n\n![alt text](https://github.com/j-jalving/statamic-autograph/blob/main/screenshot.png?raw=true)\n\n\n## Troubleshooting\n\n#### • The user dropdown is empty\nMake sure the `user_collection` config value is correct.\n\n#### • The templates dropdown is empty\nCheck the path to the templates folder in your config (default: `resources/views/autograph`) and make sure it has at least one `.antlers.html` or `.blade.php` template file in it. \n\n#### • My images don't load\nDo your images work in the preview window, but they wont't load your my email client? Make sure you use the `full_url` modifier on your image url's.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj-jalving%2Fstatamic-autograph","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj-jalving%2Fstatamic-autograph","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj-jalving%2Fstatamic-autograph/lists"}