Lesson 17 – Subscription Email Output

Printing an Email Receipt

World of Software Engineering sends a monthly receipt to all subscribers.

The system already stores the message parts as variables.

Your job is to print the email correctly.
What you must learn from this lesson:

• Output must appear in the correct order
• You must use existing variables
• Do not type new raw strings or numbers
• The final output must be exactly three lines
Expected Output:

Thank you for subscribing to World of Software Engineering!
Your monthly charge was: $20.25
We appreciate your continued support.
Complete the email output
email_intro = "Thank you for subscribing to World of Software Engineering!"
email_body = "Your monthly charge was: "
email_footer = "We appreciate your continued support."
currency_symbol = "$"
monthly_total = "20.25"

# Don't edit above this line