11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# send-all-test-emails.sh — Send all test transactional emails in all 5 languages non-interactively
|
|
# Usage: ./scripts/send-all-test-emails.sh
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR/.."
|
|
|
|
printf "6\ny\n" | bash scripts/test-transactional-emails.sh
|