2020-04-10 00:43:15 +02:00
|
|
|
import * as MailService from "../services/mailService"
|
2020-04-08 23:41:04 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'MailQueueJob',
|
|
|
|
description: 'Send pending emails (up to 5 attempts in case of failures).',
|
|
|
|
|
2020-04-10 00:43:15 +02:00
|
|
|
run: MailService.sendPendingMails,
|
2020-04-08 23:41:04 +02:00
|
|
|
}
|