tethys.backend/config/mail.ts
Arno Kaimbacher 2235f3905a
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m8s
- improved vies and controllers for rejecting datasets with email for reviewer and editor role
- falsh also error via config/inertia.ts
- npm updates
2024-09-26 13:51:35 +02:00

76 lines
2.0 KiB
TypeScript

import env from '#start/env';
import { defineConfig, transports } from '@adonisjs/mail';
const mailConfig = defineConfig({
default: 'smtp',
from: 'tethys@geosphere.at',
/**
* The mailers object can be used to configure multiple mailers
* each using a different transport or same transport with different
* options.
*/
mailers: {
smtp: transports.smtp({
socketTimeout: 5000,// Overall timeout (5 seconds)
host: env.get('SMTP_HOST', ''),
port: env.get('SMTP_PORT'),
secure: false,
// ignoreTLS: true,
requireTLS: false,
/**
* Uncomment the auth block if your SMTP
* server needs authentication
*/
/* auth: {
type: 'login',
user: env.get('SMTP_USERNAME'),
pass: env.get('SMTP_PASSWORD'),
}, */
}),
resend: transports.resend({
key: env.get('RESEND_API_KEY'),
baseUrl: 'https://api.resend.com',
}),
},
});
export default mailConfig;
declare module '@adonisjs/mail/types' {
export interface MailersList extends InferMailers<typeof mailConfig> {}
}
// const mailConfig = defineConfig({
// default: 'smtp',
// /**
// * The mailers object can be used to configure multiple mailers
// * each using a different transport or same transport with different
// * options.
// */
// mailers: {
// smtp: transports.smtp({
// host: env.get('SMTP_HOST', ''),
// port: env.get('SMTP_PORT'),
// /**
// * Uncomment the auth block if your SMTP
// * server needs authentication
// */
// /* auth: {
// type: 'login',
// user: env.get('SMTP_USERNAME'),
// pass: env.get('SMTP_PASSWORD'),
// }, */
// }),
// resend: transports.resend({
// key: env.get('RESEND_API_KEY'),
// baseUrl: 'https://api.resend.com',
// }),
// },
// })