Back to Article
summary-example.qmd
Download Source

In [1]:
print("hi")
hi
In [2]:
email_subject = "World Cup Soccer Balls"

email_sender = "YourGmail@gmail.com"
email_receiver = "Recipient@gmail.com"

email_html = """
For a number of decades in the middle of the 20th century, the nature of the soccer ball changed quite drastically in each iteration of the World Cup. The accepted number of panels constantly changed (and is still changing to this day). Presented below are the years during the transition from local manufacturers to multi-national corporations.

<table style="width: 100%; font-size: 0.8em;">
  <thead>
    <tr>
      <th style="border-bottom: 1px solid #ccc;">Year</th>
      <th style="border-bottom: 1px solid #ccc;">Name</th>
      <th style="border-bottom: 1px solid #ccc;">Country</th>
      <th style="border-bottom: 1px solid #ccc;">Manufacturer</th>
      <th style="border-bottom: 1px solid #ccc; text-align: right;">Panels</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1950</td>
      <td>Duplo T</td>
      <td>Brazil</td>
      <td>Superball</td>
      <td style="padding: 0px 5px; text-align: right;">12</td>
    </tr>
    <tr>
      <td>1954</td>
      <td>Swiss World Champ</td>
      <td>Switzerland</td>
      <td>Kost Sport</td>
      <td style="padding: 0px 5px; text-align: right;">18</td>
    </tr>
    <tr>
      <td>1958</td>
      <td>Top Star</td>
      <td>Sweden</td>
      <td>Sydlader AB</td>
      <td style="padding: 0px 5px; text-align: right;">24</td>
    </tr>
    <tr>
      <td>1962</td>
      <td>Crack</td>
      <td>Chile</td>
      <td>Curtiembres Salvador Caussade</td>
      <td style="padding: 0px 5px; text-align: right;">18</td>
    </tr>
    <tr>
      <td>1966</td>
      <td>Challenge 4-Star</td>
      <td>England</td>
      <td>Slazenger</td>
      <td style="padding: 0px 5px; text-align: right;">25</td>
    </tr>
    <tr>
      <td>1970</td>
      <td>Telstar</td>
      <td>Mexico</td>
      <td>Adidas</td>
      <td style="padding: 0px 5px; text-align: right;">32</td>
    </tr>
  </tbody>
</table>

I hope you enjoy! <br><br>

Regards, <br>
Jules
"""
In [3]:
Subject: An Example Email
From: YourGmail@gmail.com
To: Recipient@gmail.com
Date: Tue, 14 Oct 2025 20:25:38 -0000
For a number of decades in the middle of the 20th century, the nature of the soccer ball changed quite drastically in each iteration of the World Cup. The accepted number of panels constantly changed (and is still changing to this day). Presented below are the years during the transition from local manufacturers to multi-national corporations.
Year Name Country Manufacturer Panels
1950 Duplo T Brazil Superball 12
1954 Swiss World Champ Switzerland Kost Sport 18
1958 Top Star Sweden Sydlader AB 24
1962 Crack Chile Curtiembres Salvador Caussade 18
1966 Challenge 4-Star England Slazenger 25
1970 Telstar Mexico Adidas 32
I hope you enjoy!

Regards,
Jules