2
0

🐛 (limits) Fix usage limits email emojis

This commit is contained in:
Baptiste Arnaud
2022-09-20 21:24:56 +02:00
committed by Baptiste Arnaud
parent 6384a3adae
commit 1063429275
6 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@ export const sendEmailNotification = (props: Omit<SendMailOptions, 'from'>) => {
})
return transporter.sendMail({
from: env('SMTP_FROM'),
from: process.env.SMTP_FROM ?? env('SMTP_FROM'),
...props,
})
}