{"id":32744654,"url":"https://github.com/apify/actor-email-signature-generator","last_synced_at":"2026-01-20T17:03:53.776Z","repository":{"id":309112589,"uuid":"939389502","full_name":"apify/actor-email-signature-generator","owner":"apify","description":"Apify Email Signature Generator","archived":false,"fork":false,"pushed_at":"2026-01-10T17:59:42.000Z","size":142,"stargazers_count":1,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T00:32:38.444Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","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/apify.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-26T13:14:56.000Z","updated_at":"2026-01-06T08:28:44.000Z","dependencies_parsed_at":"2026-01-10T23:04:22.127Z","dependency_job_id":null,"html_url":"https://github.com/apify/actor-email-signature-generator","commit_stats":null,"previous_names":["apify/actor-email-signature-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/apify/actor-email-signature-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Factor-email-signature-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Factor-email-signature-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Factor-email-signature-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Factor-email-signature-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apify","download_url":"https://codeload.github.com/apify/actor-email-signature-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apify%2Factor-email-signature-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":[],"created_at":"2025-11-03T16:25:20.790Z","updated_at":"2026-01-20T17:03:53.771Z","avatar_url":"https://github.com/apify.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apify email signature generator\n\nThis actor generates an email signature for Apify team members based on the provided details.\nThe generated signature is available in the key-value store, with the key being \"OUTPUT\".\nThe format is HTML.\n\n## Features\n\n- Generates professional email signatures for Gmail and Outlook\n- Customizable personal information (name, position, phone number)\n- Social media links (Twitter, LinkedIn, GitHub)\n- Additional custom links with labels\n- Apify profile link with custom label\n- Optional \"We're hiring\" link\n- Optional G2 badge\n- Optional compliance badges (GDPR and SOC2) with links to documentation\n- Color scheme that adapts to both light and dark modes in email clients\n- Automatic URL sanitization (adds \"https://\" prefix if missing)\n\n## Build requirements\n\n- Node.js 20 (specified in the Dockerfile)\n- Uses the `--legacy-peer-deps` flag for npm install to handle dependency conflicts\n\n## Input parameters\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `fullName` | String | **Required**. The full name displayed in the signature. |\n| `position` | String | **Required**. Your position in Apify. |\n| `phoneNumber` | String | Your phone number. |\n| `twitterUrl` | String | The URL of your Twitter. |\n| `linkedInUrl` | String | The URL of your LinkedIn. |\n| `githubUrl` | String | The URL of your GitHub. |\n| `hubspotUrl` | String | The URL for Hubspot meetings. |\n| `otherUrls` | Array | Other URLs with custom labels. Each item has a `key` (label) and `value` (URL). |\n| `apifyUrl` | String | The URL of your Apify profile. |\n| `apifyUrlLabel` | String | Optional label for your Apify profile URL. Default is \"Apify Profile\". |\n| `shouldDisplayHiring` | Boolean | **Required**. Determines whether the hiring link gets displayed. |\n| `shouldDisplayG2` | Boolean | Determines whether the G2 banner gets displayed. |\n| `shouldDisplayGDPR` | Boolean | Determines whether the GDPR compliance badge gets displayed. Default is `true`. |\n| `shouldDisplaySOC2` | Boolean | Determines whether the SOC2 compliance badge gets displayed. Default is `true`. |\n| `type` | String | **Required**. The signature type. Options: \"Gmail\" or \"Outlook\". Default is \"Gmail\". |\n\n## Usage\n\n1. Provide the required input parameters\n2. Run the actor\n3. Retrieve the HTML signature from the key-value store under the key \"OUTPUT\"\n4. Copy and paste the HTML into your email client's signature settings\n\n## URL formatting\n\nAll URLs in the signature are automatically processed:\n- If a URL doesn't start with \"http://\" or \"https://\", the \"https://\" prefix is automatically added\n- This means you can input URLs like \"twitter.com/username\" without needing to add the protocol\n\n## Testing dark mode\n\nThe actor includes a testing tool to preview how the signature will look in both light and dark modes:\n\n1. Run the `generate-test-page.js` script:\n\n   ```bash\n   node generate-test-page.js\n   ```\n\n2. Open the generated `dark-mode-test.html` file in your browser\n3. Use the \"Toggle Dark/Light Mode\" button to switch between modes\n\nFor thorough testing, it's recommended to also test in actual email clients with dark mode enabled (Gmail, Apple Mail, Outlook).\n\n## Compliance badges\n\nThe signature can include compliance badges for:\n\n- **GDPR**: Links to \u003chttps://docs.apify.com/legal/gdpr-information\u003e\n- **SOC2**: Links to \u003chttps://trust.apify.com/\u003e\n\nThese can be toggled individually using the `shouldDisplayGDPR` and `shouldDisplaySOC2` input parameters.\n\n## Color scheme\n\nThe signature uses:\n\n- Standard browser colors (black in light mode, white in dark mode) for name, position, and phone number\n- A medium blue color (#6b89c9) for links that works reasonably well in both light and dark modes\n\n## Example\n\n```json\n{\n    \"fullName\": \"John Doe\",\n    \"position\": \"Software Engineer\",\n    \"phoneNumber\": \"+1 (123) 456-7890\",\n    \"twitterUrl\": \"twitter.com/johndoe\",\n    \"linkedInUrl\": \"linkedin.com/in/johndoe\",\n    \"githubUrl\": \"github.com/johndoe\",\n    \"hubspotUrl\": \"meetings.hubspot.com/johndoe\",\n    \"otherUrls\": [\n        {\n            \"key\": \"Facebook\",\n            \"value\": \"facebook.com/johndoe\"\n        },\n        {\n            \"key\": \"Personal Website\",\n            \"value\": \"johndoe.com\"\n        }\n    ],\n    \"apifyUrl\": \"apify.com/johndoe\",\n    \"apifyUrlLabel\": \"My Apify Profile\",\n    \"shouldDisplayHiring\": true,\n    \"shouldDisplayG2\": true,\n    \"shouldDisplayGDPR\": true,\n    \"shouldDisplaySOC2\": true,\n    \"type\": \"Gmail\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapify%2Factor-email-signature-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapify%2Factor-email-signature-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapify%2Factor-email-signature-generator/lists"}