#!/usr/bin/env python3
import email.policy

msg = email.message_from_string("""From test-sender@example.com
From: test-sender@example.com
To: test-recipient@example.com
Subject: test simple message

It's a test.

-- Best regards.""", policy=email.policy.default)

msg.set_content("Заменили текст.")

print(msg)

