2
0

fix(docker): 🐛 Runtime public environment

This commit is contained in:
Baptiste Arnaud
2022-06-22 07:36:11 +02:00
parent 3e47b37c2e
commit f801a29539
55 changed files with 358 additions and 167 deletions

View File

@ -1,4 +1,5 @@
import { createTransport } from 'nodemailer'
import { env } from 'utils'
export const sendEmailNotification = ({
to,
@ -19,7 +20,7 @@ export const sendEmailNotification = ({
})
return transporter.sendMail({
from: process.env.NEXT_PUBLIC_SMTP_FROM,
from: env('SMTP_FORM'),
to,
subject,
html: content,