Most voted "nodemailer" questions
21 questions
Sort by count of
-
8
votes3
answers281
viewsPick up reply email content
I’m using the library of imap to log into a company account and bring in the new emails, when it’s an email reply I’d like to pick up only the new content but I can’t get it just the full…
-
5
votes1
answer149
viewsConfigure HTML variable inside Nodemailer html
I need to send an email using Nodemailer, and I need to send email with html, but I’m not able to set the variables directly inside the email HTML, I’ve tried the replace() and did not succeed.…
-
4
votes3
answers1358
viewsNodemailer sends email but recipient does not receive it (hostgator server)
I have an e-mail server at the hostgator and an account at the same. I need to use the nodemailer to send messages to my clients from this account. For this I need to configure manually with these…
-
4
votes1
answer375
viewsHow do I receive emails in my web application?
I am making a web application (front-end in Vuejs/Quasar and server in Hapijs) and I need it in addition to send also receive emails. I am sending it through the Nodemailer library, and it is…
-
2
votes0
answers63
viewsFirebase Function nodemailer Office365
I’m using firebase Function to trigger the nodemailer and send an email. Using gmail I was successful, but Outlook365 does not work. In Transporter I do this way: var transporter =…
javascript node.js firebase nodemailer firebase-cloud-functionsasked 6 years, 10 months ago Leone Azevedo 67 -
1
votes0
answers212
viewsSending error - Nodemailer
I configured my nodemailer as follows let transporter = nodemailer.createTransport({ port: 465, host: 'host do cpanel', auth: { user: '[email protected]', pass: 'minhaSenha' } }); and he makes a…
-
1
votes1
answer323
viewsStatus e-mail - nodemailer
Whenever I send a message using nodemailer I have how to get the example messageid : messageid: [email protected] It is possible to make a query to check the status of…
-
1
votes1
answer252
viewsImport HTML Nodemailer
I’m using the nodemailer for sending emails on my server HTML in a variable, I wonder if it is possible to leave saved in a arquivo.html and just call his content to send that email. I’m currently…
-
1
votes1
answer166
viewsError finding directory . handlebars
I have the following folder and file structure in my Node project: And the following configuration of email templates: configureTemplates() { const viewPath = resolve(__dirname, '..', 'app',…
-
0
votes1
answer895
viewssend email with Nodemailer
I created the following Model with Nodejs: 'use strict' function UserDAO(model) { this.model = model; } UserDAO.prototype.email = function(callback) { //TESTE de email var filePath =…
-
0
votes0
answers199
viewsNodemailer: Error: self Signed Certificate in Certificate chain
I am trying to send an email by nodemailer, but the following error appears: Error: self Signed Certificate in Certificate chain. My code: let transporter = nodemailer.createTransport({ host:…
-
0
votes3
answers834
viewssending email with nodemailer
I am making an application with Angularjs and have a contact form with name, email, phone and message. I need the contents of this form to go to the client’s email and I’m trying to use the…
-
0
votes1
answer69
viewsSend email after upload is complete?
I have the following function for sending emails using the nodemailer and a Hapijs server: let data = request.payload; if (data.file) { let name = data.file.hapi.filename; let caminho = __dirname +…
-
0
votes0
answers59
viewsCalling a Nodemailer.js via Javascript (AJAX)
Hello, I wonder if it is possible to run a nodemailer via javascript (AJAX). Because it returns error and I can’t debug (because it’s on the server). This is the right way to call the file? Thank…
-
0
votes3
answers1663
viewsNodejs error: A partials dir must be a string or config Object
I am sending standardized emails using nodemailer with nodemailer-express-handlebars ,but whenever I am trying to send an email, I am receiving the Error: A partials dir must be a string or config…
-
0
votes1
answer23
viewsType error in Class method, [Ignore this and say the method does not exist]
Good morning, I am facing a little problem, when calling via the express route a class method Controllercontact he says the method does not exist. const nodemailer = require('nodemailer')…
-
0
votes0
answers12
viewsNodemailer does not send to different customers
Searching for user tickets and customizing a message for each one can be a value requirement for a customer I’m trying to do just that A loop to customize a message to a found user I have the…
-
-1
votes1
answer67
viewsUncaught Error - Sending email using nodemailer and Angularjs
I have been racking my brain for some time trying to create a contact page where the user can send an email. I’m new to Ode, and that’s why I’ve been through some trouble. At the moment I can’t get…
-
-2
votes1
answer100
viewsAssign automatic email sending to a button using nodemailer
I own a site and I would like that when the user sent a message through the contact, the site sent me this message via email... already configured the sending and is working using NODEMAILER const…
-
-2
votes2
answers194
viewsSending e-mail with Nodejs and nodemailer
I understand that there are some posts about how to send email using Nodejs and nodemailer, but after many attempts I still receive the fault Answer: '535-5.7.8 Username and Password not accepted…
-
-2
votes0
answers32
viewsSend Email as type "meeting"
I need to send email automatically. I can do this already using the nodemailer. But, I need this email to go as Invite (Meeting). Because, when the person clicks "Yes", it will save the reminder in…