Skip to content

Commit 5400bc9

Browse files
committed
Final QA
1 parent bfa4065 commit 5400bc9

18 files changed

Lines changed: 10 additions & 8 deletions

python-email/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

python-send-email/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Sending Emails With Python
2+
3+
Source files supporting the [Sending Emails With Python](https://realpython.com/python-send-email/) tutorial on [Real Python](https://realpython.com).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
msg["to"] = f"{name} <{email}>"
1616
msg["from"] = f"Me <{sender_email}>"
1717
msg["Subject"] = "Your grade"
18-
msg.set_content(f"Congratulations, {name}, your grade is {grade}.")
18+
msg.set_content(f"Congratulations, {name}, you got a {grade}.")
1919

2020
send(msg, sender_email)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<body>
2424
<p>Hi,<br>
2525
How are you?<br>
26-
<a href="http://realpython.com">Real Python</a>
26+
<a href="https://realpython.com">Real Python</a>
2727
has many great tutorials.
2828
</p>
2929
</body>

0 commit comments

Comments
 (0)