Send Multiple Mail From List With Python
You can send multiple e-mail using HTML themes with Python.
Here is the e-mail information to be sent.
#The mail address and password
sender_address = '[email protected]'
sender_pass = 'xxxxx'
Here you need to enter the smtp information of the mail server you are using.
smtplib.SMTP_SSL('smtp.yandex.com',465)
** You need to edit the information with the editor. ** Continuing to be developed ** Soon you will be able to enter information through the interface and create your list more easily.