update configs for email
This commit is contained in:
parent
9994cd783f
commit
4392bbe556
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'smtp_host' => 'ssl://smtp.mail.ru',
|
||||||
|
'smtp_port' => 465,
|
||||||
|
'smtp_user' => 'no_reply@dot-dot.ru',
|
||||||
|
'smtp_pass' => 'NRTk7rXhesHQpi3YWB92',
|
||||||
|
|
||||||
|
'subject' => 'Заявка Спотторг',
|
||||||
|
|
||||||
|
'sender' => [
|
||||||
|
'email' => 'no_reply@dot-dot.ru',
|
||||||
|
'name' => 'Спотторг'
|
||||||
|
],
|
||||||
|
|
||||||
|
'recipients' => [ // Получателей может быть несколько
|
||||||
|
0 => [
|
||||||
|
'email' => 'rzaharov@spottorg.ru',
|
||||||
|
'name' => 'Менеджер'
|
||||||
|
]
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
@ -195,6 +195,8 @@ services:
|
||||||
landing:
|
landing:
|
||||||
image: registry.dot-dot.ru/landing:${LANDING_TAG}
|
image: registry.dot-dot.ru/landing:${LANDING_TAG}
|
||||||
command: sh -c 'nginx; php-fpm -R'
|
command: sh -c 'nginx; php-fpm -R'
|
||||||
|
volumes:
|
||||||
|
- ./configs/landing/config.php:/application/backend/config.php
|
||||||
user: root
|
user: root
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue