Remove debug email statement before I get spammed

This commit is contained in:
rijkvanzanten
2020-06-22 19:00:18 -04:00
parent 7fcfa40df9
commit cb40d29606

View File

@@ -23,14 +23,14 @@ import webhooksRouter from './routes/webhooks';
import notFoundHandler from './routes/not-found';
import sendMail from './mail';
// import sendMail from './mail';
sendMail({
to: 'rijkvanzanten@me.com',
subject: 'Test Email',
text: 'Hi there!',
html: '<h1>Hi there!</h1>',
});
// sendMail({
// to: 'rijkvanzanten@me.com',
// subject: 'Test Email',
// text: 'Hi there!',
// html: '<h1>Hi there!</h1>',
// });
const app = express()
.disable('x-powered-by')