Build an Email Simulator - Step 4

Tell us what’s happening:

i dont understand what is wrong with my code , can someone help me find my mistake in here?

Your code so far

class Email:
    def __init__(self, sender, receiver, subject, body):
        self.sender = sender
        self.receiver = receiver
        self.subject = subject
        self.body = body
# User Editable Region

email_obj = Email(
    'alice@example.com',
    'bob@example.com',
    'Hello',
    'Hi bob!'
    )
print(f"Sender: {email_obj.sender}")
print(f"Subject: {email_obj.subject}")
# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36

Challenge Information:

Build an Email Simulator - Step 4

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-email-simulator/6852f06fdde1b4634a263f03.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @echarita2005,

The attributes you pass to Email must match the instructions exactly (check capitalization).

Print only the attributes and nothing more.

Happy coding