Kleies Utility programm für unsere Email verwaltung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
394 B

import codecs
from mail_util import checkFor_unkownContacts, sendEmails
def getResponseText():
with open('responses/bookingResponse.txt', 'r') as file:
data = file.read()
return data
contacts = checkFor_unkownContacts()
testContacts = []
testContacts.append('e.neug@icloud.com')
responseText = getResponseText()
print(responseText)
sendEmails(responseText, testContacts)