From 05785aec7fcffa827f69bf64b4ee9602bd59bdc6 Mon Sep 17 00:00:00 2001 From: Viraj Jadhav Date: Fri, 2 Jan 2026 16:19:51 +0530 Subject: [PATCH] fix(curriculum): clarify email confirmation message (#64867) --- .../blocks/workshop-email-simulator/685d53b5e4f5784562a12d1b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-email-simulator/685d53b5e4f5784562a12d1b.md b/curriculum/challenges/english/blocks/workshop-email-simulator/685d53b5e4f5784562a12d1b.md index 732ac244c28..3b6a0f4175d 100644 --- a/curriculum/challenges/english/blocks/workshop-email-simulator/685d53b5e4f5784562a12d1b.md +++ b/curriculum/challenges/english/blocks/workshop-email-simulator/685d53b5e4f5784562a12d1b.md @@ -9,7 +9,7 @@ dashedName: step-45 Users should get confirmation when they successfully send an email. Let's improve the user experience by adding feedback to the `send_email` method. -In the `send_email` method of the `User` class, add a print statement after the email is sent that shows confirmation. The message should include both the sender's name and the receiver's name in this format: `Email sent from [sender_name] to [receiver_name]!\n` +In the `send_email` method of the `User` class, add a `print` statement after the email is sent that shows confirmation. The message should be `Email sent from [sender_name] to [receiver_name]!\n`, where `[sender_name]` is replaced by the sender's name and `[receiver_name]` is replaced by the receiver's name. # --hints--