Skip to content

Commit

Permalink
use symfony mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jan 23, 2022
1 parent 0465b32 commit f697c27
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 28 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ FUSIO_DB_PW="test1234"
FUSIO_DB_HOST="localhost"
# Drivers: pdo_mysql, pdo_pgsql, sqlsrv, oci8, sqlanywhere, pdo_sqlite
FUSIO_DB_DRIVER="pdo_mysql"
FUSIO_MAILER="native://default"
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@

### 2.1.8
### 2.1.9

* Use symfony mailer

### 2.1.8 (2022-21-01)

* Moved login provider keys to config
* Improve routes provider import
Expand Down
189 changes: 174 additions & 15 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 3 additions & 12 deletions configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,9 @@
],
*/

// Settings of the internal mailer. By default we use the internal PHP mail
// function
/*
'fusio_mailer' => [
'transport' => 'smtp',
'host' => 'email-smtp.us-east-1.amazonaws.com',
'port' => 587,
'username' => 'my-username',
'password' => 'my-password',
'encryption' => 'tls',
],
*/
// Settings of the internal mailer. More information s.
// https://symfony.com/doc/current/mailer.html#using-built-in-transports
'fusio_mailer' => getenv('FUSIO_MAILER'),

// Endpoint of the apps repository. All listed apps can be installed by the
// user at the backend app
Expand Down

0 comments on commit f697c27

Please sign in to comment.