Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2023-07-13 10:46:35 +02:00
commit 6fbadf7e4e
1 changed files with 6 additions and 5 deletions

View File

@ -10,16 +10,17 @@ module.exports = {
async send(options) {
options.from = `${config.app.senderName} <${config.app.senderEmail}>`;
if (!process.env.NODE_ENV)
options.to = config.app.senderEmail;
const env = process.env.NODE_ENV;
const canSend = env === 'production' || !env || options.force;
if (process.env.NODE_ENV !== 'production' && !options.force) {
if (!canSend || !config.smtp.auth.user) {
const notProductionError = {message: 'This not production, this email not sended'};
await this.mailLog(options, notProductionError);
return Promise.resolve(true);
}
if (!config.smtp.auth.user)
return Promise.resolve(true);
if (!env)
options.to = config.app.senderEmail;
let res;
let error;