Merge pull request #356 from OpenSignLabs/mismatch_attach

fix: correct condition
This commit is contained in:
prafull-opensignlabs
2025-03-04 06:02:50 +00:00
parent f78451d3f9
commit d0dd571478
5 changed files with 19 additions and 17 deletions
@@ -230,8 +230,7 @@ async function sendMailProvider(req, plan, monthchange) {
}
async function sendmailv3(req) {
const nonCustomMail = await sendMailProvider(req);
return nonCustomMail;
return { status: 'error' };
}
export default sendmailv3;