expmail/config.dist.php
2020-09-03 11:55:25 +02:00

19 lines
614 B
PHP

<?php
$MAIL_HOST = "localhost";
$MAIL_USER = ""; // Leave blank to not use authentication
$MAIL_PASS = "";
$MAIL_STARTTLS = false;
$MAIL_SMTPS = false;
$MAIL_PORT = null; // Default: 587 (no encryption/STARTTLS), 465 (SMTPS)
$MAIL_FROM_MAIL = "noreply@expmail.example"; // Leave blank to use $MAIL_USER
$MAIL_FROM_NAME = "EXPMail";
$ALWAYS_TO = []; // List of email addresses that will always be added as "To:"
$ALWAYS_CC = []; // List of email addresses that will always be added as "CC:"
$ALWAYS_BCC = []; // List of email addresses that will always be added as "BCC:"
$API_KEYS = [
"verysecretstring"
];