Questions tagged as 'nodemailer'

3
answers

Pick up email response content

I'm using the imap library to sign in to a company account and bring in the new emails when it's an answer of an email I would just pick up the new content but I can not get this just the full conversation. Let me give you an example: A cli...
asked by 05.04.2018 / 21:22
1
answer

Configure HTML Variable within Nodemailer html

I need to send an emai 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 already tried replace() and I did not succeed. server.route({ path: '/enviar', method:...
asked by 16.10.2017 / 01:55
2
answers

Nodemailer sends email but recipient does not receive it (hostgator server)

I have an e-mail server on the hostgator and an account on it. I need to use nodemailer to send messages to my clients from this account. For this I need to manually configure with these instructions from the hostgator I'vetestedallpossiblec...
asked by 16.04.2016 / 19:53
0
answers

Firebase function nodemailer Office365

I'm using the firebase function to trigger the nodemailer and send an email. Using gmail I was successful, but with Outlook365 it does not work. In the transporter I do it this way: var transporter = nodemailer.createTransport(smtpTransp...
asked by 09.01.2018 / 14:00
1
answer

Status e-mail - nodemailer

Whenever I send a message using the nodemailer I have how to get the messageId example:    messageId: [email protected] Is it possible to make an appointment to check the status of this email? such as whether...
asked by 27.11.2018 / 20:28
1
answer

Send email after the 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 + "/uploads/" + name;...
asked by 01.09.2017 / 16:35
1
answer

Import HTML Nodemailer

I am using nodemailer to send emails on my server node, however I did not like to store all HTML in a variable, I would like to know if it is possible to leave saved in a arquivo.html and just call the content of it to send...
asked by 11.09.2017 / 15:32
0
answers

Calling a NodeMailer.js via Javascript (AJAX)

Hello, I wonder if it is possible to run a nodemailer via javascript (AJAX). Because error returns and I can not debug (because this is on the server). Is this the right way to call the file? Thank you The code for NodeMailer.js var n...
asked by 05.10.2018 / 13:27
0
answers

Improve the performance of nodemailer with express (Node.JS)

Well I created an application in Node.js for sending emails via form, to test site I was using FakeSMTP , and the performance was up to speed, but after I "dockerizei" I realized that the return in the sendmail function is taking more than 5 se...
asked by 07.05.2018 / 22:30
0
answers

ics event is not appearing as it should (using nodemailer / icalEvent)

event creation with ics library let event = { start: [schedule.start.getFullYear(), schedule.start.getMonth() + 1, schedule.start.getDate(), schedule.start.getHours(), schedule.start.getMinutes()], duration: { hours: schedule.duration...
asked by 06.04.2018 / 18:03