Aiosmtplib 3.0.2 | Coderz Repository

aiosmtplib 3.0.2

Last updated:

0 purchases

aiosmtplib 3.0.2 Image
aiosmtplib 3.0.2 Images

Free

Languages

Categories

Add to Cart

Description:

aiosmtplib 3.0.2

aiosmtplib is an asynchronous SMTP client for use with asyncio.
For documentation, see Read The Docs.

Quickstart
import asyncio
from email.message import EmailMessage

import aiosmtplib

message = EmailMessage()
message["From"] = "root@localhost"
message["To"] = "somebody@example.com"
message["Subject"] = "Hello World!"
message.set_content("Sent via aiosmtplib")

asyncio.run(aiosmtplib.send(message, hostname="127.0.0.1", port=25))


Requirements
Python 3.8+ is required.


Bug Reporting
Bug reports (and feature requests) are welcome via Github issues.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.