Sending email from the server is one of the popular problem in any web applications since we might need to send the several types of emails such as daily report email, invoice email, notification email etc. If we are going to send the simple emails(ex. simple text), we can use the default mailing functionality easily. …
Scheduling Jobs on the Server for Meteor project
Scheduling jobs and running them on the server is one of the main problems we need to handle on our projects since it helps a lot of stuff such as auto email sending functionality, auto data pulling functionality, auto cleaning functionality etc. We are normally using daemon to schedule and run jobs on the server. …