fix: connection refused while sending mail

This commit is contained in:
prafull-opensignlabs
2024-08-05 14:31:55 +05:30
parent ae24a80b95
commit 624ba95792
2 changed files with 12 additions and 23 deletions
@@ -43,17 +43,12 @@ const makeEmail = async (to, from, subject, html, url, pdfName) => {
response.on('end', () => resolve('success'));
});
} else {
if (publicUrl.protocol === 'http:') {
http.get(url, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
} else {
https.get(url, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
}
const path = new URL(url)?.pathname;
const localurl = 'http://localhost:8080' + path;
http.get(localurl, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
}
});
};
@@ -7,7 +7,6 @@ import { smtpenable, smtpsecure, updateMailCount, useLocal } from '../../Utils.j
import sendMailGmailProvider from './sendMailGmailProvider.js';
import { createTransport } from 'nodemailer';
async function sendMailProvider(req) {
const publicUrl = new URL(process.env.SERVER_URL);
const mailgunApiKey = process.env.MAILGUN_API_KEY;
try {
let transporterSMTP;
@@ -40,17 +39,12 @@ async function sendMailProvider(req) {
response.on('end', () => resolve('success'));
});
} else {
if (publicUrl.protocol === 'http:') {
http.get(req.params.url, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
} else {
https.get(req.params.url, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
}
const path = new URL(req.params.url)?.pathname;
const localurl = 'http://localhost:8080' + path;
http.get(localurl, async function (response) {
response.pipe(Pdf);
response.on('end', () => resolve('success'));
});
}
});
};