I would like to convert my windows services to Azure web jobs. Currently my windows service does the following tasks
- It connects to the database and fetches data (using entity framework)
- It creates a PDF using wkhtmltopdf exe and saves it to the folder.
- This PDF which is saved in the folder will be sent to the customer by email
Is it possible to achieve the above mentioned tasks in Azure web jobs? If not are there any other alternatives to accomplish this?