autofax/.env.example
Sochen aef5e5283a Initial commit: automated hourly fax sender for insurance claims
Sends doula coverage claims via Telnyx fax API every hour, logs every
attempt, and generates a printable HTML report for HR. Includes both
a Linux CLI with cron scheduling and a Windows GUI (tkinter) that can
be packaged as a portable exe via PyInstaller.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 11:36:47 +00:00

18 lines
665 B
Text

# Telnyx API credentials
# Sign up at https://portal.telnyx.com/ and get your API key
TELNYX_API_KEY=KEY_your_api_key_here
# Your Telnyx Fax Application connection ID
# Create a Fax Application in Mission Control Portal under Messaging > Fax
TELNYX_CONNECTION_ID=your_connection_id_here
# Your Telnyx fax-enabled phone number (E.164 format)
# Purchase one in the Mission Control Portal under Numbers, assign to Fax App
TELNYX_FROM_NUMBER=+1XXXXXXXXXX
# Destination fax number (E.164 format)
FAX_TO_NUMBER=+1XXXXXXXXXX
# ntfy notification URL (optional, comment out to disable)
NTFY_URL=https://nt.nevo.engineer/your-channel
NTFY_TOKEN=Bearer tk_your_token_here