-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
25 lines (22 loc) · 1.1 KB
/
Copy path.env.example
File metadata and controls
25 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copy this file to .env and fill in your ZeroSMTP credentials.
# Get a login and password by registering and activating an account at
# https://msgwing.com (copy them once, while logged in).
#
# NOTE: variable names are prefixed with ZEROSMTP_ to avoid colliding with
# reserved/OS-level variables (e.g. USERNAME is auto-set on Windows).
#
# These are read directly by every example in this repo (python-zerosmtp.py,
# node-zerosmtp.mjs, php-zerosmtp.php, etc.) via each language's standard
# environment-variable API. This file itself is not loaded automatically —
# source it (`export $(grep -v '^#' .env | xargs)` on Linux/macOS) or load
# it with a tool like `dotenv`/`direnv`, or set the variables directly in
# your shell/CI.
ZEROSMTP_PASSWORD=your-password
ZEROSMTP_SUBJECT=Test Email from ZeroSMTP
# Used only by bash-swaks-zerosmtp.sh and pwsh-zerosmtp.ps1
ZEROSMTP_BODY=Hello from ZeroSMTP!
# Used only by SendEmailTest_mail-tester.com.ps1