Let's send some mails via Node.js
In my Android app I'm having a unique comments section from the users to contact me, they send comments and messages to my mail via this layout... Now lets see i want to send a mail, with this three fields, to myself, via my app... I know! An get request to a server, sending this three fields in a mail to myself! Let's do this... first of all... lets fins a library that sends mails bingo! Nodemailer it s very appropriate for this task... https://github.com/andris9/Nodemailer https://npmjs.org/package/nodemailer Lets's install it.. I use Cloud9 for developing in Node.js the pros are enough and the ide just IDE just works it coud debug in real time, and it got an console with some practice you can make a server and deploying it in no time, now lets see install node mailer. Node has npm (node package manager) it resolves the dependencies via the Package.json or installing the stuf directly into the app via the npm install <name_of_the_library>, we go...