You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
557 B
26 lines
557 B
module.exports = ({env}) => ({
|
|
// ...
|
|
email: {
|
|
config: {
|
|
provider: 'nodemailer',
|
|
providerOptions: {
|
|
host: env('SMTP_HOST', 'smtp.example.com'),
|
|
port: env('SMTP_PORT', 587),
|
|
auth: {
|
|
user: env('SMTP_USERNAME'),
|
|
pass: env('SMTP_PASSWORD'),
|
|
},
|
|
// ... any custom nodemailer options
|
|
},
|
|
settings: {
|
|
defaultFrom: 'no-reply@strapi.io',
|
|
defaultReplyTo: 'synology@naser.fr',
|
|
},
|
|
},
|
|
},
|
|
'import-export-entries': {
|
|
enabled: true
|
|
}
|
|
// ...
|
|
});
|