tango-app-api-payment-subscription 3.4.0-alpha.3 → 3.4.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -434,8 +434,10 @@ export async function invoiceDownload( req, res ) {
|
|
|
434
434
|
if ( getgroup.generateInvoiceTo.length == 0 ) {
|
|
435
435
|
return res.sendError( 'To Email not Found', 500 );
|
|
436
436
|
}
|
|
437
|
+
console.log( getgroup.generateInvoiceTo );
|
|
437
438
|
|
|
438
|
-
const result = await sendEmailWithSES( getgroup.generateInvoiceTo, mailSubject, mailbody, attachments, '
|
|
439
|
+
const result = await sendEmailWithSES( getgroup.generateInvoiceTo, mailSubject, mailbody, attachments, 'noreply@tangoeye.ai' );
|
|
440
|
+
console.log( result );
|
|
439
441
|
let logObj = {
|
|
440
442
|
userName: req.user?.userName,
|
|
441
443
|
email: req.user?.email,
|