Skip to content

Instantly share code, notes, and snippets.

View Vatazhyshyn-Iurii's full-sized avatar

Iurii Vatazhyshyn Vatazhyshyn-Iurii

View GitHub Profile
@Vatazhyshyn-Iurii
Vatazhyshyn-Iurii / server.js
Created February 17, 2020 17:00 — forked from koldovsky/server.js
Formspree alternative
// This is simple email sender by programming mentor
// Usage:
// Install deps: npm i express nodemailer body-parser
// Run: GMAIL=example@google.com PASSWORD=12345 node server.js
const express = require('express');
const nodemailer = require('nodemailer');
const bodyParser = require('body-parser');
const path = require('path');