Add nodemailer for email plugin

This commit is contained in:
julien vdb
2025-02-06 15:04:19 +01:00
parent dec949cb97
commit b9e619feeb
3 changed files with 45 additions and 1 deletions

View File

@@ -1 +1,20 @@
export default () => ({});
export default () => ({
email: {
config: {
provider: "nodemailer",
providerOptions: {
host: "mail.harmonychoral.com",
port: 465,
auth: {
user: "admin@harmonychoral.com",
pass: "Apslxnap12bn23",
},
// ... any custom nodemailer options
},
settings: {
defaultFrom: "admin@harmonychoral.com",
defaultReplyTo: "admin@harmonychoral.com",
},
},
},
});