WIP: 6367-blankNotification #1903

Draft
pablone wants to merge 11 commits from 6367-blankNotification into dev
3 changed files with 0 additions and 5 deletions
Showing only changes of commit 6dff7d5115 - Show all commits

View File

@ -49,7 +49,6 @@ module.exports = Self => {
}]
}, myOptions);
console.log('notificationQueue: ', notificationQueue);
const statusSent = 'sent';
for (const queue of notificationQueue) {

View File

@ -95,8 +95,6 @@ class Component {
build() {
const fullPath = path.resolve(__dirname, this.path);
console.log('this.path: ', this.path);
console.log('fullPath: ', fullPath);
if (!fs.existsSync(fullPath))
throw new Error(`Template "${this.name}" not found`);

View File

@ -78,8 +78,6 @@ class Email extends Component {
for (let attachment of options.attachments)
attachments.push(attachment);
}
console.log(typeof this.args);
console.log(this.args?.subject);
const localeSubject = await this.getSubject();
const mailOptions = {
to: this.args.recipient,