I am using C# MVC Architecture.
Brief Introduction about the function that I have implemented.
A Recruiter can post job adverts by logging into their accounts.Once a job is posted,that particular job will be listed under pending confirmation.An admin can view the confirmation pending job adverts from the admin panel.They can view it and either accept it or reject it or edit and accept it.So when an admin accepts the job advert,that particular job advert will go live in the website.And also an email will be sent to that particular recruiter indicating that their job vacancy has been published on the website along with the link.
So when a recruiter is posting a job advert,they can include the basic job details and also there is a feature that they can add screening questions for applicants to answer when they submit their CV.So when an admin is checking for confirmation pending jobs adverts ,they view these screening questions and sometimes they edit some questions and accept the advert.
Problem
Along with the email sent when an admin accepts the job advert,I want to add a screenshot of the screening questions.As an admin is getting so many job adverts,sending an email manually is difficult.
i want to attach the Screenshot of the screening questions as well.
I referred.
Capture screenshot of active window?
And
How to take a screenshot and send by email programaticly on dotnet
Iam finding it difficult to combine it to my implementation.How can I add this to my existing Code?To which classes do I have to add and do the amendments,
I tried but had no success.
And what are the libraries that I have to import?
Any help is appreciated.
Thankyou.