0 out of 68 challenges solved

Fix the error in Python code #11

# Fix the error in the code below
def compose_welcome_email(name):
  """
  Generates a welcome message for a new subscriber based in their name.

  Args:
    name (str): Name of the subscriber

  Returns:
    str: Message to send to the subscriber
  """
  message = "Dear {name}, thank you for signing up for our newsletter!"
  return message