Skip to content

Send mails with MailOut

Last updated on

To send mails with MailOut you can use every SMTP-compatible client, that is capable of PLAIN-auth.

Terminal window
SERVER="<your-smtp-endpoint>" \
PORT=25 \
SMTP_USERNAME="<your-username>" \
SMTP_PASSWORD="<your-password>" \
SENDER="noreply@<your-domain>" \
RECIPIENT="<recipient>@aboutmy.email" \
swaks \
--to $RECIPIENT \
--from $SENDER \
--server $SERVER \
--port $PORT \
--auth plain \
--auth-user $SMTP_USERNAME \
--auth-password $SMTP_PASSWORD \
--tls