Update email plugin config

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-05-14 19:47:41 +04:00
parent 38922ea57e
commit f8a941c905
+2
View File
@@ -1,5 +1,6 @@
module.exports = ({env}) => ({
email: {
config: {
provider: 'nodemailer',
providerOptions: {
host: env('SMTP_HOST', 'smtp.example.com'),
@@ -8,6 +9,7 @@ module.exports = ({env}) => ({
user: env('SMTP_USERNAME'),
pass: env('SMTP_PASSWORD'),
}
}
},
settings: {
defaultFrom: env('SMTP_FROM'),