faa_outlook_signature

Foundation AI Advisory Outlook Signatures

Outlook-ready email signatures for the Foundation AI Advisory team. Each signature is plain HTML built from tables and inline styles for maximum compatibility with the Outlook (Word) rendering engine, including dark mode.

Signatures

Person Role Preview
Ben DeMichael Managing Partner ben-demichael/preview.html
Jason Kapcar Partner & Chief AI Officer jason-kapcar/preview.html
Thomas Wagenberg Partner & AI Business Analyst thomas-wagenberg/preview.html
Punith Kumar AI Solutions Engineer punith-kumar/preview.html

The landing page at preview.html links to every signature.

Repository layout

.
├── README.md
├── build_signatures.py        # regenerates each person's HTML from one template
├── preview.html               # index page linking to all signatures
├── assets/
│   ├── faa-logo-dualmode-300.png   # logo with soft white halo (works on light + dark)
│   ├── faa-logo-transparent-300.png
│   ├── faa-logo-trimmed-300.png    # original logo on white background
│   ├── badge-e.png            # @ badge for the email row
│   ├── badge-m.png            # mobile badge
│   ├── badge-w.png            # website badge
│   └── badge-in.png           # LinkedIn badge
├── CNAME                      # serves the site at sig.foundationaiadvisory.com
├── ben-demichael/
│   ├── signature.html         # paste-ready, references hosted assets
│   ├── preview.html           # browser preview using relative asset paths
│   └── signature.txt          # plain-text fallback (mobile / HTML-stripping clients)
├── jason-kapcar/
│   ├── signature.html
│   ├── preview.html
│   └── signature.txt
├── punith-kumar/
│   ├── signature.html
│   ├── preview.html
│   └── signature.txt
└── thomas-wagenberg/
    ├── signature.html
    ├── preview.html
    └── signature.txt

signature.html files use absolute image URLs on the company domain (https://sig.foundationaiadvisory.com/assets/..., served by GitHub Pages via a DNS CNAME) so the images load no matter where the signature is pasted. preview.html files use relative paths so they work both locally and on Pages.

Add a signature to Outlook

  1. Open the appropriate preview URL in an incognito / private window (so you bypass the GitHub Pages CDN cache and any prior browser cache):
    • https://sig.foundationaiadvisory.com/ben-demichael/preview.html
    • https://sig.foundationaiadvisory.com/jason-kapcar/preview.html
    • https://sig.foundationaiadvisory.com/thomas-wagenberg/preview.html
    • https://sig.foundationaiadvisory.com/punith-kumar/preview.html
  2. Click inside the white panel and press Ctrl+A to select the whole signature, then Ctrl+C to copy.
  3. In Outlook (web or new desktop), open Settings → Mail → Signatures (or File → Options → Mail → Signatures in classic Outlook).
  4. Create or edit a signature, paste with Ctrl+V, and Save.
  5. Send a test email to yourself and verify in both light and dark mode:
    • The logo stays legible (the halo gives the dark wordmark contrast).
    • The @, m, w, and in badges sit beside their text, not above.
    • All links open the correct destination.

Editing the signatures

All signatures are generated from a single template inside build_signatures.py. To change a contact detail, the layout, or the LinkedIn label format:

  1. Edit the PEOPLE list (or the SIG_TEMPLATE string) in build_signatures.py.
  2. Run python3 build_signatures.py from the repo root.
  3. Commit the regenerated signature.html and preview.html files.

Design notes