hr-letter-generator
v0.1.0
Published
Generates acceptance/rejection emails
Downloads
1
Maintainers
Readme
README
This README would normally document whatever steps are necessary to get your application up and running.
What is this repository for?
Creating quick Human Resources response, i.e. Acceptance/Rejection emails and texts.
Example
// Create recipient
var recipient = {
name : 'John Doe',
number : '+1212XXXXXXX',
email : '[email protected]'
};
// Create letter
var reject = new Template(recipient, 'John Manager', 'XX Company',
(new Date()).toLocaleDateString('en-US'), 'Sr. Java Developer');
// Send via SMS
reject.sendSMS('+1917XXXXXXX','<YOUR TWILIO SID>','<YOUR TWILIO TOKEN>');
// Send via Email
reject.sendEmail('<YOUR SPARKPOST API KEY>','[email protected]');
Who do I talk to?
Hanjun Chen [email protected]