1.0.0 • Published 3 years ago

@pazznetwork/pazz-apply-job v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

pazz-apply-job

Welcome to our "Job-Application-As-A-Library"-Solution. You are a angular / typescript / express developer and you are searching for a new job? Why not apply to pazz via our job application API today? More information about the job can be found on our About Us - Jobs section

We will reply to your application ASAP. Please check the console log if your application was successfully received.

Installation

npm install @pazznetwork/pazz-apply-job

Usage

const sendApplication = require('@pazznetwork/pazz-apply-job');

const email = 'me@example.com';
const subject = 'Application from an interested individual';
const message = `
Dear Pazz Team,

I would like to apply as a junior JavaScript / TypeScript Fullstack Developer.
You can find my CV @ https://my-website.example.com

I would love to hear from you,
John Doe
`.trim();

sendApplication(email, subject, message).then(console.log, console.error);