Challenge: MVP Pattern

In this challenge, you have to implement the MVP pattern to solve the given problem.

Problem statement

In this challenge, you need to implement sending and displaying a sent email using the MVP pattern. You have already been given the dummy code for the classes you need to implement.

The Model class should contain the following:

  • The properties: sender’s name, receiver’s name, and the email title

  • The get and set functions ...