简体   繁体   中英

sending email with nodemailer

I'm trying to create a simple node server that sends emails with nodemailer

let app = require('express')();
app.use(require('body-parser').urlencoded());

const CONTACT_ADDRESS = 'email@email.com';

var mailer = require('nodemailer').createTransport({
  service: 'mail.ee',
  auth: {
    user: 'test@test.com',
    pass: 'password',
  }
});

app.post('/contact', function(req, res) {
  mailer.sendMail({
    from: req.body.from,
    to: '[CONTACT_ADDRESS]',
    subject: req.body.subject || '[No subject]',
    html: req.body.message || '[No message]',
  }, function(err, info) {
    if (err) return res.status(500).send(err);
    res.json({success: true});
  })
});

//Service is listening to port 3000
app.listen(3000, function(){
    console.log("Service is running on port 3000...");
});

and the contact form is as follows:

<form method="post" action="http://localhost:3000/contact">
    <label>Your e-mail</label>
    <input type="text" name="from">

    <label>Subject</label>
    <input type="text" name="subject">

    <label>Message</label>
    <textarea name="body"></textarea>
    <input type="submit" value="Submit">
  </form>

When ever I press on submit button I get:

JSON.stringify(value); TypeError: Converting circular structure to JSON

What does it mean? How can I overcome it?

res.send method trying to stringify your err object, but your err object cant be stringified, because not a standard error object. Try to output this err object to see and decide how to handle it.

For example you can use

if (err) return res.status(500).send(err.reason);

istead

if (err) return res.status(500).send(err);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM