Imagine that you work for a company where they need to send emails…

Question Answered step-by-step Imagine that you work for a company where they need to send emails… Imagine that you work for a company where they need to send emails to all of their customers based on a given sale or promotion. Generating those emails manually would be an enormous manual task. Your job is to write program to create the emails programmatically.To accomplish this job, you would need 2 things. [1] The email template (i.e. the words that will be in the email) and [2] a list with names and email addresses of the people who will receive the email.For this homework, you will write program that reads a file ( email_template.txt  Download email_template.txt) where you will get the email template. This is the wordings that will be on every single email. Notice that this template has two special fields {email} and {first_name}. They are the fields that you will replace with the name and email that you get from the list of names (emails.csv  Download emails.csv) Your job is to generate the emails based on these two files. You will NOT send any email. I just want you to print them on the console using the print() function.The mail_template file has two fields that you need to replace with the name and with the email of each possible customer that you get from the csv file.The cvs file I am providing you only has 4 rows, but your program needs to be able to handle any number of rows. Notes: Computer Science Engineering & Technology Python Programming PROG 108 Share QuestionEmailCopy link Comments (0)