skip to Main Content

Nodemailer does not send mail from Ubuntu server

Good day, I have simple Nodejs program that is using Nodemailer: var syncSql = require('sync-mysql'); var nodemailer = require('nodemailer'); var syncCon = new syncSql( { host:'localhost', user:'_nodeuser', password:'_password', database:'mydatabase' }); var transporter = nodemailer.createTransport( { service: 'gmail', auth: { user:…

VIEW QUESTION

Uploading to S3 Bucket with Nest.js error – Javascript

I am trying to upload to an s3 bucket in next and have a couple of errors I am using the package: https://www.npmjs.com/package/@aws-sdk/client-s3 My Controller is: @Post('test-doc') @UseInterceptors(FileInterceptor('file')) async testDocument(@UploadedFile() file: Express.Multer.File) { return this.assetService.upload(file); } With my service: async…

VIEW QUESTION
Back To Top
Search