#!/bin/bash receiver="info@example.com" EMAIL_SERVER="localhost" #"pymta.example.com" "localhost" EMAIL_SERVER_auth="10.100.111.1" # IP for authenticated server ( not localhost), use your main interface ip sender="test@example.com" username="test@example.com" password="ZjDvcjPSs-nwK2Ghj5vQY7L4LdmTpmn_AEZMokJTFS" # password you setup for the user! domain="example.com" body_content_file="@tests/email_body.txt" SMTP_PORT=4025 SMTP_TLS_PORT=40465 cc_recipient="ccrecipient@example.com" bcc_recipient="bccrecipient@example.com" <