freeCodeCamp/controllers/contact.js

69 lines
1.5 KiB
JavaScript

var secrets = require('../config/secrets');
var nodemailer = require("nodemailer");
var smtpTransport = nodemailer.createTransport('SMTP', {
// service: 'Mailgun',
// auth: {
// user: secrets.mailgun.login,
// pass: secrets.mailgun.password
// }
service: 'SendGrid',
auth: {
user: secrets.sendgrid.user,
pass: secrets.sendgrid.password
}
});
/**
* GET /contact
* Contact form page.
*/
exports.getContact = function(req, res) {
res.render('contact', {
title: 'Contact'
});
};
/**
* POST /contact
* Send a contact form via Nodemailer.
* @param email
* @param name
* @param message
*/
exports.postContact = function(req, res) {
req.assert('name', 'Name cannot be blank').notEmpty();
req.assert('email', 'Email is not valid').isEmail();
req.assert('message', 'Message cannot be blank').notEmpty();
var errors = req.validationErrors();
if (errors) {
req.flash('errors', errors);
return res.redirect('/contact');
}
var from = req.body.email;
var name = req.body.name;
var body = req.body.message;
var to = 'your@email.com';
var subject = 'API Example | Contact Form';
var mailOptions = {
to: to,
from: from,
subject: subject,
text: body + '\n\n' + name
};
smtpTransport.sendMail(mailOptions, function(err) {
if (err) {
req.flash('errors', { msg: err.message });
return res.redirect('/contact');
}
req.flash('success', { msg: 'Email has been sent successfully!' });
res.redirect('/contact');
});
};