12

https://gist.github.com/anonymous/ba82f74071cc38a0700b

Before changing some settings, e.g. host and port, it was working fine locally, but just won't work on production.

Anyone know why?

Thanks

Łukasz
  • 2,131
  • 1
  • 13
  • 28
Mod Mark
  • 199
  • 1
  • 2
  • 7

2 Answers2

25

Disable Captcha temporarily so you can mail using new server,

https://accounts.google.com/b/0/displayunlockcaptcha

Anjal Saneen
  • 3,109
  • 23
  • 38
2

i think this is happening because of port number and your firewall at this port is not allowing you to send mail over this port(80) . try with 587 or 465 which are actually the standard port number for SMTP.

changed your code a bit

/**
 * Created by atul on 29/3/16.
 */

var nodemailer = require('nodemailer');
transporter = nodemailer.createTransport({
  service: 'Gmail',
  //host: 'myhost',
  port: 465,
  secure: true,
  auth: {
    user: 'mymail@gmail.com',
    pass: 'mypassword'
  }
});
  mailOptions = {
    from: 'mymail@gmail.com',
    to: 'mymail@gmail.com',
    subject: 'You received a new message at !',
    text: 'Hello Mailer',
html: ''
};
transporter.sendMail(mailOptions, function(error, info){
  if(error){
  console.log(error)
}else{
  console.log('Message sent: ' + info.response)
}
});
Atul Agrawal
  • 1,474
  • 5
  • 22
  • 41