Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
1 answer
18 views

Nodemailer contact us form

const transporter = nodemailer.createTransport({ service: "gmail", auth: { user: "[email protected]", pass: "password", }, }); app.post("/api/send", (...
Bikkey_11's user avatar
0 votes
2 answers
32 views

Denied access to s3 URL

I have a node function where I'm attaching a pdf from a s3 URL and I keep getting a 403 error. This happens in the program as well as the browser. Here is the Nodemailer function I'm trying to attach ...
Matt's user avatar
  • 1,109
-1 votes
2 answers
63 views

Next.JS Getting a 500 Server Error When Trying to Submit my Form with Nodemailer

api/email.ts import { type NextRequest, NextResponse } from 'next/server'; import nodemailer from 'nodemailer'; import Mail from 'nodemailer/lib/mailer'; export async function POST(request: ...
Stephen Welch's user avatar
0 votes
0 answers
53 views

Error: wrong version number when using Nodemailer with mail.com SMTP server

I'm trying to set up Nodemailer to send emails through the mail.com SMTP server, but I'm encountering the following error: Error: AC650000:error:0A00010B:SSL routines:ssl3_get_record:wrong version ...
Aqu1tain's user avatar
-1 votes
0 answers
16 views

how to validate newsletter subscription button in website

In my website i incorperated the newsletter subscription button for users would wish to receive newsletters from our website through their email. once the user keys in his/her email the user ought to ...
WegenerSteven's user avatar
-1 votes
0 answers
148 views

535 5.7.139 Authentication unsuccessful, user is locked by your organization’s security defaults policy. Contact your administrator

535 5.7.139 Authentication unsuccessful, user is locked by your organization’s security defaults policy. Contact your administrator. this error is occurring while sending mail through office365 smtp ...
Ashwin Patel's user avatar
0 votes
1 answer
32 views

ReactJS Nodemailer not sending email

Trying to figure out how to send emails using ReactJS and Nodemailer. In my client folder, I have App.js which looks like this: import "./App.css"; import { useState } from "react";...
John Beasley's user avatar
  • 2,853
0 votes
0 answers
29 views

Angular How to open Email as Draft (preferrably in Outlook)

We have here a frontend implemented with Angular. Now a new requirement arisen: the frontend application should generate an Email based on HTML Templates, fill it with some data from database, add an ...
DigitalMachine's user avatar
-1 votes
0 answers
18 views

Nodemailer - not working for a specific SMTP credentials

This is on a MEAN stack project on a VPS. Server OS: Ubuntu 20.04 Problem: Emails are getting sent using gmail or other SMTP credentials. But when a specific domain email credentials are used. The ...
hemant's user avatar
  • 397
-3 votes
0 answers
41 views

Is there a way to send email without app password?

I want to develop a product similar to mailchimp or brevo to send bulk mail (4000 mails or more at a time) from users' emails using node.js. What I have found is gmail does not allow to send mails ...
Tanjib Rubyat's user avatar
0 votes
0 answers
29 views

How to Ensure Email Template Compatibility Across Different Email Clients, I am using Nodemailer, ejs in a Node.js Application?

Context: I'm working on a Node.js backend application using the MERN stack with TypeScript. I use Nodemailer for sending emails, and I initially used EJS for my email templates. However, I encountered ...
Manjunath Naik's user avatar
0 votes
1 answer
45 views

How to export a xlsx file from frontend (react) to backend (express), and then send it to email?

So, I needed a function to convert data from an array containing arrays of objects into a sheet, and managed to do so with the xlsx lib. Now I need to send it appended to an email and it worked fine ...
gustop01's user avatar
0 votes
0 answers
21 views

How can i get the mail and the attachments with node?

I am making a small application using node and the imap-simple and nodemailer library. I need that when I click on the download button, the email is downloaded in .eml format, which it already does, ...
Bea9495's user avatar
1 vote
0 answers
65 views

Nodemailer Sending Email hangs with a ETIMEDOUT and at Resolved but eventually sends email

So I have this one problem with an app I am building using Nodemailer to send email to an SMTP server (or gmail) and I am getting a weird problem. TL;DR: The email does get sent but it's rare. Other ...
FinuxFirit's user avatar
0 votes
0 answers
15 views

Connection refused error when trying to send an email using nodemailer

I am trying to send a mail from node using nodemailer. I tried to send using ethereal for testing, but i keep getting connection refused error. const createAutoEmail = require("../functionLib/...
sumanth kishor's user avatar

15 30 50 per page
1
2 3 4 5
127