NodeMailer with Email Templates Using Node

A web application generally utilizes email functionality throughout its entire code base. Left unchecked, this becomes unwieldy. Email templates are a great way to clean up your code. The purpose of this article is to provide you with an easy way to utilize NodeMailer, the Q Promise Library, and the email-templates package to create your…

Email Verification in Node, Express, and MongoDB

Web applications commonly require that users register using a valid email address. A working email address is crucial for common tasks, such as resetting passwords and account management. Email verification is also essential for ensuring signups are from real users. The purpose of this article is to provide a high-level overview on implementing email verification…