Py email send, creates a list of specified names and emails addresses, and sends a pre drafted email to all the addresses in the list.
The names and email addresses can be specified in the contacts.txt
file.
One contact per line, with the name followed by a space and the email address
name [email protected]
The message can be customized in the message.txt file. The message is generated using template strings. If you change the message some adjusting may be needed in the email_send.py
file, for you're message to be sent correctly.
The SMTP plugin requires the host and port number of the email service that you are using. As well as the address and password of the account that you are using.
You'll need to create your own env_file to define the HOST
, PORT
, EMAIL
and PASS
variables. I suggest also adding this file to your .gitignore so you don't upload personal credentials to github