26 lines
739 B
Text
26 lines
739 B
Text
# Copy this to .env and fill in your values
|
|
|
|
# --- Required ---
|
|
# 10-digit phone number (no + or country code)
|
|
PHONE_NUMBER=4805405363
|
|
|
|
# Your carrier's SMS email gateway
|
|
# Verizon: vtext.com | T-Mobile: tmomail.net | AT&T: txt.att.net | Cricket: sms.cricketwireless.net
|
|
CARRIER_GATEWAY=vtext.com
|
|
|
|
# Gmail address to send from
|
|
GMAIL_USER=you@gmail.com
|
|
|
|
# Gmail App Password (myaccount.google.com → Security → App passwords)
|
|
# Remove spaces from the 16-char code
|
|
GMAIL_APP_PASSWORD=xxxxxxxxxxxxxxxxxxxx
|
|
|
|
# --- Optional ---
|
|
# Time to send the text each day (24-hour HH:MM, container timezone)
|
|
RUN_TIME=07:00
|
|
|
|
# Days to run (comma-separated: mon,tue,wed,thu,fri,sat,sun)
|
|
RUN_DAYS=mon,tue,wed,thu,fri
|
|
|
|
# HTTP trigger server port
|
|
PORT=2323
|