Skip to content
Snippets Groups Projects
Commit 398c73af authored by unteem's avatar unteem
Browse files

add mail.config.php

parent b759492a
No related branches found
No related tags found
No related merge requests found
<?php
$CONFIG = array (
'mail_domain' => getenv('MAIL_DOMAIN'),
'mail_from_address' => getenv('MAIL_DOMAIN'),
'mail_smtpmode' => 'smtp',
'mail_smtphost' => getenv('MAIL_HOST'),
'mail_smtpport' => getenv('MAIL_PORT'),
'mail_smtpauth' => 1,
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpname' => getenv('MAIL_DOMAIN'),
'mail_smtppassword' => getenv('MAIL_PASS'),
'mail_smtpsecure' => 'tls',
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment