This commit is contained in:
2024-10-29 05:37:46 +01:00
commit fe33c5f123
34 changed files with 20148 additions and 0 deletions

21
config/plugins.js Normal file
View File

@@ -0,0 +1,21 @@
module.exports = ({ env }) => ({
email: {
config: {
provider: "strapi-provider-email-smtp",
providerOptions: {
host: "smtp.gmail.com", //SMTP Host
port: 465, //SMTP Port
secure: true,
username: "CHANGEME",
password: "CHANGEME",
rejectUnauthorized: true,
requireTLS: true,
connectionTimeout: 1,
},
},
settings: {
defaultFrom: "CHANGEME",
defaultReplyTo: "CHANGEME",
},
},
});