""" AUTHOR: Khushal P Soonderji DATE: Tuesday, 16th Jul, 2024 OBJECTIVE: To be able to send out mails from code. REFERENCES: N/A DOWNLOADS: N/A """ # ***************************************************************************************************************** # ***** **** # *** IMPORT *** # ***** **** # ***************************************************************************************************************** # To make sibling directories accessible for imports: import sys sys.path.append(".") sys.path.append("..") # For working with mails: from email.mime.multipart import MIMEMultipart from email.mime.image import MIMEImage from email.mime.text import MIMEText from email.mime.base import MIMEBase from email import encoders # For random strings: import string import random # For system-level activities: import os # For working with files in RAM: import io # To work with Base64 encoding: import base64 # To work with datatypes: from typing import List # ***************************************************************************************************************** # ***** **** # *** MACROS / ONE-TIME INIT *** # ***** **** # ***************************************************************************************************************** # --- Nothing Yet # ***************************************************************************************************************** # ***** **** # *** VARIABLES *** # ***** **** # ***************************************************************************************************************** # --- Nothing Yet # ***************************************************************************************************************** # ***** **** # *** FUNCTIONS *** # ***** **** # ***************************************************************************************************************** # --- Nothing Yet # ***************************************************************************************************************** # ***** **** # *** CLASSES *** # ***** **** # ***************************************************************************************************************** class GmailMessage: def __init__( self, from_email: str, to_email: str | List[str], subject: str, cc_emails: str | List[str] = None, bcc_emails: str | List[str] = None ): """ Create an instance of the message that you would like to send. :param from_email: The EMail ID of the sender. :param to_email: The EMail ID of the recipient. :param subject: The subject of the mail. :param cc_emails: A list of recipients to add to the CC section. :param bcc_emails: A list of recipients to add to the BCC section. """ # Create the instance of the message: self.message = MIMEMultipart() self.message["From"] = from_email self.message["To"] = ",".join(to_email if isinstance(to_email, list) else [to_email]) self.message["Subject"] = subject if cc_emails: self.message["CC"] = ",".join(cc_emails if isinstance(cc_emails, list) else [cc_emails]) if bcc_emails: self.message["BCC"] = ",".join(bcc_emails if isinstance(bcc_emails, list) else [bcc_emails]) # Note down the values for accessing later: self.__from = from_email self.__to = to_email self.__cc = cc_emails, self.__bcc = bcc_emails self.__subject = subject # ┏┓ • # ┃┃┏┓┏┓┏┓┏┓┏┓╋┓┏┓┏ # ┣┛┛ ┗┛┣┛┗ ┛ ┗┗┗ ┛ # ┛ @property def from_mail(self): return self.__from @property def to_mail(self): return self.__to @property def cc_mails(self): return self.__cc @property def bcc_mails(self): return self.__bcc @property def subject(self): return self.__subject # ┏┓ ┓ ┓ ┏┓ # ┣┫┏┫┏┫ ┃ ┏┓┏┓╋┏┓┏┓╋ # ┛┗┗┻┗┻ ┗┛┗┛┛┗┗┗ ┛┗┗ def add_text(self, text) -> None: """ Add plain-text to the mail body. :param text: The text to add to the mail body. :return: None. """ self.message.attach(MIMEText(text, "plain")) def add_html(self, html_text) -> None: """ Add HTML text to the mail body. :param html_text: The HTML text to add to the mail body. :return: None. """ self.message.attach(MIMEText(html_text, "html")) def add_inline_image( self, image_file: str | io.BytesIO, file_name: str = None, content_id: str = None ) -> None: """ Add an inline image to the body of the mail. NOTE: This is NOT the same as sending an image as an attachment. :param image_file: The image data to attach to the mail body. :param file_name: The name of the file. This is the same name by which it will be downloaded. You need not specify this if the input file is specified as a path. Needed when you give the input file as a buffer. :param content_id: Inline images are inserted via HTML bocks. This field identifies the image resource. If not specified, I will generate a random string. You may write a custom value here if you know what you are doing. For most use cases, please ignore this field. :return: None. """ # Read the image as bytes: image_bytes = None if type(image_file) is str: file_name = file_name or os.path.split(image_file)[-1] with open(image_file, "rb") as opened_image_file: image_bytes = opened_image_file.read() if type(image_file) is io.BytesIO: image_file.seek(0) image_bytes = image_file.getvalue() # Declare the part to be attached to the multipart message: if image_bytes is not None: # Create the HTML block if the image pointer is blank: if content_id is None: content_id = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(8)) self.add_html(f"""