Sending job resumes the programmer's way. Using Gulp and Nodemailer. Automate all the things!
Have Gulp installed.
Clone this repository, and install dependecies
$ git clone https://github.com/applefreak/resume-mailer.git
$ cd resume-mail
$ npm install
Copy and rename config.example.js
and letter.example.html
to config.js
and letter.html
respectively. But you should really use MailChimp to make your own letter! The example letter just serves as an example.
Open config.js
and edit smtpInfo
to match your email service, edit skills
to your own, then finally defaults
to your own default values.
You can test out the mail by executing:
$ gulp template
This will create an HTML file inside the build
folder, with the company name as the file name.
This does not mail the letter!
After checking and making sure the letter is fine, you can mail it by running this Gulp task:
$ gulp mail
This time, the email will be sent out!
I've written a post on this project, you can check it here on my site.
Thanks for reading!