Questions tagged as 'nodemailer'

2
answers

sending email with nodemailer

I am making an application with angularjs and I have a form of contact 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 nodemailer but I'm not sure. I created a s...
asked by 29.06.2017 / 21:12
0
answers

Error sending - Nodemailer

I configured my nodemailer as follows let transporter = nodemailer.createTransport({ port: 465, host: 'host do cpanel', auth: { user: '[email protected]', pass: 'minhaSenha' } });...
asked by 22.03.2017 / 19:19
1
answer

send 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 = 'services/content/test.html'; var fs = require('fs');...
asked by 22.04.2016 / 19:00
1
answer

Uncaught Error - Sending email using nodemailer and Angularjs

I have been breaking head for some time trying to create a page of contacts where the user through the page can send an email. I am new with node and so I have had some problems. At the moment I can not get my application to recognize nodemailer...
asked by 08.10.2018 / 19:08