pip install instantmailerA Python module that allows you to send instant mails using Python. Python Requires <= 3.6
- Fully secured with SSL
- Instant mails
- Send mails with attachment
- ssl
import instantmailer
mail = instantmailer.Mail("[email protected]", "12345678") # Replace with your email and passwordAttributes
await mail.send()Sends the email
Parameters
----------
reciever: :class: `str`
The recievers mail address
body: :class: `str`
The body of the mail
subject: :class: `str`
The subject of the mail
bcc: :class: `str`
The bcc of the mail
attachment_name: :class: `str`
The name of the attachment
attachment_bytes: :class: `str`
The bytes of the attachment